Ejemplo n.º 1
0
    /**
     * @test
     */
    public function shouldAllowGetPreviouslySetPaymentName()
    {
        $config = new PaymentConfig();

        $config->setPaymentName('theName');

        $this->assertEquals('theName', $config->getPaymentName());
    }