[System] Fix building unit tests under the mobile profile
[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 #if !MOBILE
32
33 using System;
34 using System.IO;
35 using System.Diagnostics;
36
37 namespace MonoTests.System.Diagnostics
38 {
39         public class TestTextWriterTraceListener: TextWriterTraceListener
40         {
41                 public int TotalMessageCount { set; get;}
42                 public int CritialMessageCount { get; set;}
43                 public int ErrorMessageCount { get; set;}
44                 public int WarningMessageCount { get; set;}
45                 public int InfoMessageCount { get; set;}
46                 public int VerboseMessageCount { set; get;}
47
48                 public TestTextWriterTraceListener(TextWriter textWriter): base(textWriter)
49                 {
50                         Console.WriteLine ("TextWriterTraceListener is instantiated.");
51                 }
52
53
54                 public override void TraceEvent(TraceEventCache eventCache, string source, TraceEventType eventType, int id, string message)
55                 {
56                         base.TraceEvent (eventCache, source, eventType, id, message); 
57                         TotalMessageCount++;
58
59                         switch (eventType) {
60                         case TraceEventType.Critical:
61                                 CritialMessageCount++; break;
62                         case TraceEventType.Error:
63                                 ErrorMessageCount++; break;
64                         case TraceEventType.Warning:
65                                 WarningMessageCount++; break;
66                         case TraceEventType.Information:
67                                 InfoMessageCount++; break;
68                         case TraceEventType.Verbose:
69                                 VerboseMessageCount++; break;
70                         default:
71                                 break;
72                         }
73                 }
74
75                 public void clearMessageCounters()
76                 {
77                         TotalMessageCount       = 0;
78                         CritialMessageCount = 0;
79                         WarningMessageCount = 0;
80                         ErrorMessageCount       = 0;
81                         InfoMessageCount        = 0;
82                         VerboseMessageCount     = 0;
83                 }
84
85         }
86 }
87
88 #endif