Carew\Tests\Twig\GlobalsTest::testFromArray PHP 메소드

testFromArray() 공개 메소드

public testFromArray ( )
    public function testFromArray()
    {
        $globals = new Globals();
        $globals->fromArray(array('relativeRoot' => '../', 'foo' => 'bar'));
        $this->assertSame($globals->relativeRoot, '../');
        $this->assertSame($globals->extra['foo'], 'bar');
    }
GlobalsTest