ScriptFUSIONTest\Unit\Porter\Options\EncapsulatedOptionsTest::testGetReference PHP Method

testGetReference() public method

public testGetReference ( )
    public function testGetReference()
    {
        $this->options->setFoo(['bar' => 'bar', 'baz' => 'baz']);
        $this->options->removeFooKey('bar');
        self::assertSame(['baz' => 'baz'], $this->options->getFoo());
    }