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

        $config->setConfig(array('foo' => 'fooVal'));

        $this->assertEquals(array('foo' => 'fooVal'), $config->getConfig());
    }