예제 #1
0
        public void Returns10th()
        {
            Question7 q = new Question7(10);

            q.Run();
            Assert.AreEqual(q.Result, 34);
        }
예제 #2
0
        static void Main(string[] args)
        {
            //Question6 q = new Question6(
            //    new int[] { 4, 2, 4, 4 },
            //    6);
            Question7 q = new Question7(12);

            q.Run();
        }
예제 #3
0
 public void Run()
 {
     Question7.Run();
 }