Run() public static method

public static Run ( ) : int
return int
Esempio n. 1
0
        public void WhileLoop_Run_TestMethod1()
        {
            var n        = 0;
            var expected = string.Empty;
            var actual   = WhileLoop.Run(n);

            Assert.AreEqual(expected, actual);
        }
Esempio n. 2
0
        public void WhileLoop_Run_TestMethod3()
        {
            var n        = 2;
            var expected = "**";
            var actual   = WhileLoop.Run(n);

            Assert.AreEqual(expected, actual);
        }
Esempio n. 3
0
 static void Main()
 {
     WhileLoop.Run();                                        // @MDB LINE: main
     Foreach.Run();
     MarshalByRefTest.Run();
 }