Beispiel #1
0
        static void Main(string[] args)
        {
            // Intialize the class
            modBy_class modBy = new modBy_class();

            // Setup the values, this includes asking for the upper bounds, # of pairs, mod values, and return values
            modBy.getValues();

            // check 1 - upper bounds for the given mod values and either print the return value(s) or just the integer
            string[] values = modBy.checkMod();

            // Iterate through our list
            for (int i = 0; i < values.Length; i++)
            {
                Console.WriteLine(values[i]);
            }

            Console.ReadKey();
        }
Beispiel #2
0
        public void ModBy_15Case()
        {
            // Unit test the 15 case, aka mod by 3 and 5 should return correctly
            modBy_class mod = new modBy_class();

            // Sending in our input data. 100 upper bounds, 2 pairs, mod by 3, and mod by 5
            using (StringReader sr = new StringReader(string.Format("100{0}2{0}3{0}By 3{0}5{0}By 5{0}", Environment.NewLine)))
            {
                Console.SetIn(sr);
                mod.getValues();
            }

            // the expected value of modding 15 by 3 and 5, using the above input
            string actual = "By 3 By 5 ";

            string[] values = mod.checkMod();

            // verify they are the same in order to pass the test
            Assert.AreEqual(actual, values[14]);
        }