public void Bot_Adding_Too_Many_Values_Throws_Exception() { var b = new Bot(); b.AddValue(1); b.AddValue(2); b.AddValue(3); }
public void Bot_Gives_Correct_Count_2() { var b = new Bot(); b.AddValue(1); b.AddValue(3); Assert.AreEqual(2, b.ValueCount); }
public void Bot_Gives_Correct_Low_Value() { var b = new Bot(); b.AddValue(3); b.AddValue(1); Assert.AreEqual(1, b.LowValue); }
public void Bot_Gives_Correct_High_Value() { var b = new Bot(); b.AddValue(3); b.AddValue(1); Assert.AreEqual(3, b.HighValue); }