コード例 #1
0
ファイル: MethodReflectionTest.php プロジェクト: raphhh/trex
 /**
  * Test if a method is not transient.
  */
 public function testIsTransientFalse()
 {
     $reflectedMethod = new MethodReflection('TRex\\Reflection\\resources\\Bar', 'getBar');
     $this->assertFalse($reflectedMethod->isTransient());
 }