Author: Kévin Dunglas (dunglas@gmail.com)
コード例 #1
0
ファイル: ReflectionTest.php プロジェクト: api-platform/core
 public function testWithBadMethodName()
 {
     $methodName = 'delGerard';
     $reflection = new Reflection();
     $return = $reflection->getProperty($methodName);
     $this->assertNotEquals($return, 'Gerard');
     $this->assertEquals($return, null);
 }