Author: Kévin Dunglas (dunglas@gmail.com)
Example #1
0
 public function testWithBadMethodName()
 {
     $methodName = 'delGerard';
     $reflection = new Reflection();
     $return = $reflection->getProperty($methodName);
     $this->assertNotEquals($return, 'Gerard');
     $this->assertEquals($return, null);
 }