Exemplo n.º 1
0
        public void DivisableBy5Under100()
        {
            // Arrange
            UnitTestMethods theTest = new UnitTestMethods();

            int[] odds =
            {
                0,   5, 10, 15, 20, 25, 30, 35, 40, 45,
                50, 55, 60, 65, 70, 75, 80, 85, 90, 95
            };

            // Act
            int[] actual = theTest.PositiveDivisableBy5Under100();

            // Assert
            Assert.Equal(odds, actual);
        }