Exemplo n.º 1
0
 public void GetTeamsByLeadTest()
 {
     TeamRepository target = new TeamRepository(); // TODO: Initialize to an appropriate value
     string teamLeadEmail = string.Empty; // TODO: Initialize to an appropriate value
     IList<Team> expected = null; // TODO: Initialize to an appropriate value
     IList<Team> actual;
     actual = target.GetTeamsByLead(teamLeadEmail);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }