Example #1
0
 /**
  * Getter not exist property
  *
  * @expectedException BadMethodCallException
  * @expectedExceptionMessage Method "getNotExist" not exist.
  */
 public function testGetterNotExistProperty()
 {
     $table = new Table();
     $table->getNotExist();
 }