model = new UserModel($this->db); } //-------------------------------------------------------------------- public function testFindReturnsRow() { $user = $this->model->find(1); $this->assertEquals('admin', $user['username']); } }