Пример #1
0
        public static void Main(string[] args)
        {
            Call1();

            TestsSuite suite = new AppDomainBvtSuite();

            Debug.Print("Debugger? " + System.Diagnostics.Debugger.IsAttached.ToString());
            System.Diagnostics.Debugger.Break();

            while (true)
            {
                suite.ExecuteAll();

                Thread.Sleep(2000);
            }
        }
Пример #2
0
        public static void Main(string[] args)
        {
            Call1();

            TestsSuite suite = new AppDomainBvtSuite();

            Debug.Print( "Debugger? " + System.Diagnostics.Debugger.IsAttached.ToString() );
            System.Diagnostics.Debugger.Break();

            while(true)
            {
                suite.ExecuteAll(); 

                Thread.Sleep( 2000 );
            }
        }