public void GetCfbStaffTest() { List <User> expected = null; // TODO: Initialize to an appropriate value List <User> actual; actual = CfbDirectorySearcher.GetCfbStaff(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
/// <summary> /// Loads all CFB employees. /// </summary> public void LoadCfbEmployees() { LoadUsers(CfbDirectorySearcher.GetCfbStaff().OrderBy(u => u.DisplayName).ToDictionary(u => u.Username, u => u.DisplayName)); }