Exemple #1
0
        public void GivenExample()
        {
            //Arrange
            PE.Probs.Problem1 Problem1 = new Probs.Problem1();

            int Problem1GivenResult = 23;

            //Act
            int ActualResult = Problem1.Multiples(0, 10, new int[] { 3, 5 });

            //Assert
            Assert.AreEqual(Problem1GivenResult, ActualResult, "The given example is not correct.");
        }
Exemple #2
0
        public void GivenExample()
        {
            //Arrange
            PE.Probs.Problem1 Problem1 = new Probs.Problem1();

            int Problem1GivenResult = 23;

            //Act
            int ActualResult = Problem1.Multiples(0, 10, new int[] { 3, 5 });

            //Assert
            Assert.AreEqual(Problem1GivenResult, ActualResult, "The given example is not correct.");
        }
Exemple #3
0
        public void Given3multiples()
        {
            //Arrange
            PE.Probs.Problem1 Problem1 = new Probs.Problem1();

            int Problem1GivenResult = 37;

            //Act
            int ActualResult = Problem1.Multiples(0, 10, new int[] { 2, 3, 5 });

            //Assert
            Assert.AreEqual(Problem1GivenResult, ActualResult);
        }
Exemple #4
0
        public void Given3multiples()
        {
            //Arrange
            PE.Probs.Problem1 Problem1 = new Probs.Problem1();

            int Problem1GivenResult = 37;

            //Act
            int ActualResult = Problem1.Multiples(0, 10, new int[] { 2, 3, 5 });

            //Assert
            Assert.AreEqual(Problem1GivenResult, ActualResult);
        }