Example #1
0
 public function testFindBy2()
 {
     $data = $this->object->findById('App\\Models\\Author', 2);
     $this->assertEquals(2, $data->id);
     $this->assertType('App\\Models\\Author', $data);
 }