public function testFindAll1()
 {
     $rows = $this->object->findAll();
     $this->markTestIncomplete();
     //$this->assertType('ActiveMapper\FluentCollection', $rows);
     $this->assertEquals(3, count($rows));
     $this->assertType('App\\Models\\Author', $rows[0]);
     $this->assertTrue(isset($rows[0]));
     $this->assertEquals(1, $rows[0]->id);
 }