public function testGetRepository()
 {
     $data = new DibiRepository($this->manager, 'App\\Models\\Author');
     $this->assertEquals($data, DibiRepository::getRepository($this->manager, 'App\\Models\\Author'));
 }
 public function testCallException2()
 {
     $this->setExpectedException("MemberAccessException");
     $this->object->exception();
 }