Run() public static method

public static Run ( ) : int
return int
コード例 #1
0
        public void WhileLoop_Run_TestMethod1()
        {
            var n        = 0;
            var expected = string.Empty;
            var actual   = WhileLoop.Run(n);

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

            Assert.AreEqual(expected, actual);
        }
コード例 #3
0
ファイル: TestSSE.cs プロジェクト: tralivali1234/debugger
 static void Main()
 {
     WhileLoop.Run();                                        // @MDB LINE: main
     Foreach.Run();
     MarshalByRefTest.Run();
 }