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