Run() public static méthode

public static Run ( ) : int
Résultat int
Exemple #1
0
        public void WhileLoop_Run_TestMethod1()
        {
            var n        = 0;
            var expected = string.Empty;
            var actual   = WhileLoop.Run(n);

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

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