Merge pull request #571 from igotti-google/jt2
[mono.git] / mcs / class / System / Test / System.Diagnostics / TraceSourceTest.cs
1 //
2 // TraceSourceTest.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2007 Novell, Inc.
8 //
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
32 #if !MOBILE
33
34 using NUnit.Framework;
35 using System;
36 using System.Text;
37 using System.Collections;
38 using System.Configuration;
39 using System.Diagnostics;
40
41 namespace MonoTests.System.Diagnostics
42 {
43         [TestFixture]
44         public class TraceSourceTest
45         {
46                 [Test]
47                 [ExpectedException (typeof (ArgumentNullException))]
48                 public void ConstructorNullName ()
49                 {
50                         new TraceSource (null);
51                 }
52
53                 [Test]
54                 public void DefaultValues ()
55                 {
56                         TraceSource ts = new TraceSource ("foo");
57                         Assert.AreEqual ("foo", ts.Name, "#1");
58                         Assert.IsNotNull (ts.Switch, "#2");
59                         Assert.AreEqual (SourceLevels.Off, ts.Switch.Level, "#3");
60                         Assert.IsNotNull (ts.Listeners, "#4");
61                         Assert.AreEqual (1, ts.Listeners.Count, "#5");
62                         Assert.IsNotNull (ts.Attributes, "#6");
63                         Assert.AreEqual (0, ts.Attributes.Count, "#7");
64                 }
65
66                 [Test]
67                 [ExpectedException (typeof (ArgumentNullException))]
68                 public void SetSourceSwitchNull ()
69                 {
70                         TraceSource ts = new TraceSource ("foo");
71                         ts.Switch = null;
72                 }
73         }
74 }
75
76 #endif