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

testSetAndGetIndent() 공개 메소드

public testSetAndGetIndent ( )
    public function testSetAndGetIndent()
    {
        $p = PropertyGenerator::factory('testProp', 'string', 123);
        $p->setIndent('    ');
        $this->assertEquals('    ', $p->getIndent());
    }