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