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