PopTest\Code\PropertyTest::testGetNameAndValue PHP 메소드

testGetNameAndValue() 공개 메소드

public testGetNameAndValue ( )
    public function testGetNameAndValue()
    {
        $p = PropertyGenerator::factory('testProp', 'string', 123);
        $p->setValue(456);
        $this->assertEquals(456, $p->getValue());
    }