Exemple #1
0
 public void ClearTest()
 {
     using (var test = new LoggerDisplay())
     {
         test.Clear();
     }
 }
Exemple #2
0
 public void LoggerTextBoxTest()
 {
     using (var unused = new LoggerDisplay())
     {
         Logger.Debug("Debug");
         Logger.Debug("Debug – NewInformation");
         Logger.Information("Info");
         Logger.Warning("Warning");
         Logger.Error("Error");
     }
 }
Exemple #3
0
        public void LoggerTextBoxTest()
        {
            var test = new LoggerDisplay();

            Log.Debug("Debug");
            Log.Debug("Debug – NewInformation");
            Log.Info("Info");
            Log.Warn("Warning");
            Log.Error("Error");
            Log.Fatal("Fatal");
        }
Exemple #4
0
        public void ClearTest()
        {
            var test = new LoggerDisplay();

            test.Clear();
        }
Exemple #5
0
        public void BeginSectionTest()
        {
            var test = new LoggerDisplay();

            test.BeginSection("Hello");
        }