Exemplo n.º 1
0
 public function test_find_return_array()
 {
     $user = new User();
     $user->find(4);
     $this->assertInternalType('object', $user->find(4));
 }
Exemplo n.º 2
0
 public function test_find_return_array()
 {
     $user = new User();
     $this->assertInternalType('array', $user->getAll());
 }