f6643b06c23887ccc058dc8b3d5b5d61468e26af
[mono.git] / mcs / class / System / Test / System.Diagnostics / TextWriterTraceListenerHelper.cs
1 // TextWriterTraceListenerHelper.cs -
2 // Test Helper for System.Diagnostics/SourceSwitchTest.cs
3
4 //
5 //  Author:
6 //      Ramtin Raji Kermani
7 //
8 //  Copyright (C) 2006 Novell, Inc (http://www.novell.com)
9 //
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.IO;
33 using System.Diagnostics;
34
35 namespace MonoTests.System.Diagnostics
36 {
37         public class TestTextWriterTraceListener: TextWriterTraceListener
38         {
39                 public int TotalMessageCount { set; get;}
40                 public int CritialMessageCount { get; set;}
41                 public int ErrorMessageCount { get; set;}
42                 public int WarningMessageCount { get; set;}
43                 public int InfoMessageCount { get; set;}
44                 public int VerboseMessageCount { set; get;}
45
46                 public TestTextWriterTraceListener(TextWriter textWriter): base(textWriter)
47                 {
48                         Console.WriteLine ("TextWriterTraceListener is instantiated.");
49                 }
50
51
52                 public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string message)
53                 {
54                         base.TraceEvent (eventCache, source, eventType, id, message); 
55                         TotalMessageCount++;
56
57                         switch (eventType) {
58                         case TraceEventType.Critical:
59                                 CritialMessageCount++; break;
60                         case TraceEventType.Error:
61                                 ErrorMessageCount++; break;
62                         case TraceEventType.Warning:
63                                 WarningMessageCount++; break;
64                         case TraceEventType.Information:
65                                 InfoMessageCount++; break;
66                         case TraceEventType.Verbose:
67                                 VerboseMessageCount++; break;
68                         default:
69                                 break;
70                         }
71                 }
72
73                 public void clearMessageCounters()
74                 {
75                         TotalMessageCount       = 0;
76                         CritialMessageCount = 0;
77                         WarningMessageCount = 0;
78                         ErrorMessageCount       = 0;
79                         InfoMessageCount        = 0;
80                         VerboseMessageCount     = 0;
81                 }
82
83         }
84 }
85
86