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