Example #1
0
 /**
  * Invalid setter prefix test
  *
  * @expectedException BadMethodCallException
  * @expectedExceptionMessage Method "invalidSetData" not exist.
  */
 public function testInvalidSetterPrefix()
 {
     $table = new Table();
     $table->invalidSetData('my_data');
 }