public void Test2_BanUnbanComputer() { Computers computers = new Computers(selenium); computers.Clean(secretIP); computers.Add(secretIP); Assert.IsFalse(computers.IsBanned(secretIP)); computers.Ban(secretIP); Assert.IsTrue(computers.IsBanned(secretIP)); computers.Unban(secretIP); Assert.IsFalse(computers.IsBanned(secretIP)); computers.Delete(secretIP); computers.Logout(); }