public function RuntimeReflectionServiceTest::testGetMethods in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/RuntimeReflectionServiceTest.php \Doctrine\Tests\Common\Persistence\Mapping\RuntimeReflectionServiceTest::testGetMethods()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ RuntimeReflectionServiceTest.php, line 69
Class
- RuntimeReflectionServiceTest
- @group DCOM-93
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGetMethods() {
$this
->assertTrue($this->reflectionService
->hasPublicMethod(__CLASS__, "testGetMethods"));
$this
->assertFalse($this->reflectionService
->hasPublicMethod(__CLASS__, "testGetMethods2"));
}