Ejemplo n.º 1
0
        public void IcyHot(int a, int b, bool expected)
        {
            // arrange
            Conditionals obj = new Conditionals();

            // act
            bool actual = obj.IcyHot(a, b);

            // assert
            Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 2
0
 public void IcyHottest(int temp1, int temp2, bool expected)
 {
     Conditionals test = new Conditionals();
     bool actual = test.IcyHot(temp1, temp2);
     Assert.AreEqual(expected, actual);
 }