[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / System / Test / System.Collections.Specialized / StringDictionaryTest.cs
1 //
2 // OrderedDictionaryTest.cs -
3 //      Unit tests for System.Collections.Specialized.OrderedDictionary
4 //
5 // Author:
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Collections;
32 using System.Collections.Specialized;
33 using System.Runtime.Serialization;
34
35 using NUnit.Framework;
36
37 namespace MonoTests.System.Collections.Specialized {
38
39         [TestFixture]
40         public class StringDictionaryTest {
41
42                 [Test]
43                 public void Empty ()
44                 {
45                         StringDictionary sd = new StringDictionary ();
46                         Assert.AreEqual (0, sd.Count, "Count");
47                         Assert.IsFalse (sd.IsSynchronized, "IsSynchronized");
48                         Assert.AreEqual (0, sd.Keys.Count, "Keys");
49                         Assert.AreEqual (0, sd.Values.Count, "Values");
50                         Assert.IsNotNull (sd.SyncRoot, "SyncRoot");
51                         Assert.IsFalse (sd.ContainsKey ("a"), "ContainsKey");
52                         Assert.IsFalse (sd.ContainsValue ("1"), "ContainsValue");
53                         sd.CopyTo (new DictionaryEntry[0], 0);
54                         Assert.IsNotNull (sd.GetEnumerator (), "GetEnumerator");
55                         sd.Remove ("a"); // doesn't exists
56                         sd.Clear ();
57                 }
58
59                 [Test]
60                 [ExpectedException (typeof (ArgumentNullException))]
61                 public void This_Null ()
62                 {
63                         StringDictionary sd = new StringDictionary ();
64                         sd[null] = "1";
65                 }
66
67                 [Test]
68                 public void This_Empty ()
69                 {
70                         StringDictionary sd = new StringDictionary ();
71                         sd[String.Empty] = null;
72                         Assert.IsNull (sd[String.Empty], "this[String.Empty]");
73                         Assert.AreEqual (1, sd.Count, "Count-1");
74                         Assert.IsTrue (sd.ContainsKey (String.Empty), "ContainsKey");
75                         Assert.IsTrue (sd.ContainsValue (null), "ContainsValue");
76                 }
77
78                 [Test]
79                 public void SomeElements ()
80                 {
81                         StringDictionary sd = new StringDictionary ();
82                         for (int i = 0; i < 10; i++)
83                                 sd.Add (i.ToString (), (i * 10).ToString ());
84                         Assert.AreEqual ("10", sd["1"], "this[1]");
85                         Assert.AreEqual (10, sd.Count, "Count-10");
86                         Assert.AreEqual (10, sd.Keys.Count, "Keys");
87                         Assert.AreEqual (10, sd.Values.Count, "Values");
88                         Assert.IsTrue (sd.ContainsKey ("2"), "ContainsKey");
89                         Assert.IsTrue (sd.ContainsValue ("20"), "ContainsValue");
90                         DictionaryEntry[] array = new DictionaryEntry[10];
91                         sd.CopyTo (array, 0);
92                         sd.Remove ("1");
93                         Assert.AreEqual (9, sd.Count, "Count-9");
94                         sd.Clear ();
95                         Assert.AreEqual (0, sd.Count, "Count-0");
96                 }
97
98                 [Test]
99                 [ExpectedException (typeof (ArgumentNullException))]
100                 public void Add_NullKey ()
101                 {
102                         StringDictionary sd = new StringDictionary ();
103                         sd.Add (null, "a");
104                 }
105
106                 [Test]
107                 [ExpectedException (typeof (ArgumentNullException))]
108                 public void ContainsKey_Null ()
109                 {
110                         StringDictionary sd = new StringDictionary ();
111                         sd.ContainsKey (null);
112                 }
113
114                 [Test]
115                 [ExpectedException (typeof (ArgumentNullException))]
116                 public void Remove_Null ()
117                 {
118                         StringDictionary sd = new StringDictionary ();
119                         sd.Remove (null);
120                 }
121         }
122 }