Exemplo n.º 1
0
 public function testDeleteUser()
 {
     $this->insertTestUser();
     $ret_del = $this->userDAO->deleteUser("testUser");
     $ret_query = $this->userDAO->getUserByUsername("testUser");
     $this->assertTrue($ret_del);
     $this->assertNull($ret_query);
 }