You are here

public function RuntimeReflectionServiceTest::testGetMethods in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Mapping

Code

public function testGetMethods() {
  $this
    ->assertTrue($this->reflectionService
    ->hasPublicMethod(__CLASS__, "testGetMethods"));
  $this
    ->assertFalse($this->reflectionService
    ->hasPublicMethod(__CLASS__, "testGetMethods2"));
}