public void teaPartyArgumentTest() { TeaParty teaParty = new TeaParty(); teaParty.welcome("Smith", true, true); }
public void knightTest() { TeaParty teaParty = new TeaParty(); Assert.AreEqual(teaParty.welcome("Smith", false, true), "Hello Sir Smith"); }
public void ladyTest() { TeaParty teaParty = new TeaParty(); Assert.AreEqual(teaParty.welcome("Smith", true, false), "Hello Ms. Smith"); }
public void dudeTest() { TeaParty teaParty = new TeaParty(); Assert.AreEqual(teaParty.welcome("Smith", false, false), "Hello Mr. Smith"); }