public void AcceptableMessageIceAlt2Test() { string message = "mmaammmmootthh"; Kingdom ice = new IceKingdom(); bool willAlly = ice.WillPledgeAllegiance(message); Assert.IsTrue(willAlly); }
public void UnAcceptableIceMessageAltTest() { string message = "wwertmajtgho"; Kingdom ice = new IceKingdom(); bool willAlly = ice.WillPledgeAllegiance(message); Assert.IsFalse(willAlly); }
public void AcceptableMessageIceTest() { string message = "Ahoy! Fight for me with men and money"; Kingdom ice = new IceKingdom(); bool willAlly = ice.WillPledgeAllegiance(message); Assert.IsTrue(willAlly); }