コード例 #1
0
ファイル: ReflectionClassTest.php プロジェクト: mohiva/common
 /**
  * Test if the `getNamespace` method return a `ReflectionClassNamespace` object.
  */
 public function testGetNamespace()
 {
     $class = new ReflectionClass(__CLASS__);
     $this->assertInstanceOf('com\\mohiva\\common\\lang\\ReflectionClassNamespace', $class->getNamespace());
 }