Example #1
0
 /**
  * @expectedException \Dewdrop\Exception
  */
 public function testSettingRowFromUnknownModelInstanceThrowsException()
 {
     $unknownModel = new RowEditorTestModel();
     $row = $unknownModel->createRow();
     $this->rowEditor->setRow('dewdrop_test_fruits', $row);
 }