private void AddContestants(Bee test, int num_contestants) { for ( int i=0; i<num_contestants; i++ ) test.AddContestant(names[i]); }
public void TestSameName() { Bee test_bee = new Bee(); Assert.IsTrue(test_bee.AddContestant("Bill")); Assert.IsFalse(test_bee.AddContestant("Bill")); }