public function RuntimeReflectionServiceTest::testGetMethods

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/RuntimeReflectionServiceTest.php, line 58

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"));
}