Exemplo n.º 1
0
 public void multiple3or5test(int number, bool expected)
 {
     Conditionals test = new Conditionals();
     bool actual = test.Multiple3or5(number);
     Assert.AreEqual(expected, actual);
 }
Exemplo n.º 2
0
        public void Multople3or5(int a, bool expected)
        {
            // arrange
            Conditionals obj = new Conditionals();

            // act
            bool actual = obj.Multiple3or5(a);

            // assert
            Assert.AreEqual(expected, actual);
        }
Exemplo n.º 3
0
        public void Multiple3or5(int number, bool expected)
        {
            Conditionals obj = new Conditionals();

            bool actual = obj.Multiple3or5(number);

            Assert.AreEqual(expected, actual);
        }