NUnitLite.Runner.TextUI.TestStarted C# (CSharp) Method

TestStarted() public method

A test has just started
public TestStarted ( ITest test ) : void
test ITest The test
return void
        public void TestStarted(ITest test)
        {
#if MONO
            if (!test.IsSuite)
                Xamarin.BabysitterSupport.RecordEnterTest(test.FullName);

            if (commandLineOptions.LabelTestsInOutput)
                writer.WriteLine("***** {0}", test.FullName);
            else
                writer.Write(".");
#else
            if (commandLineOptions.LabelTestsInOutput)
                writer.WriteLine("***** {0}", test.Name);
#endif
        }