You are here

public function StaticReflectionServiceTest::testGetMethods in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/StaticReflectionServiceTest.php \Doctrine\Tests\Common\Persistence\Mapping\StaticReflectionServiceTest::testGetMethods()

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/StaticReflectionServiceTest.php, line 58

Class

StaticReflectionServiceTest
@group DCOM-93

Namespace

Doctrine\Tests\Common\Persistence\Mapping

Code

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