2005-09-22 Chris Toshok <toshok@ximian.com>
authorChris Toshok <toshok@novell.com>
Thu, 22 Sep 2005 16:08:41 +0000 (16:08 -0000)
committerChris Toshok <toshok@novell.com>
Thu, 22 Sep 2005 16:08:41 +0000 (16:08 -0000)
* System.Configuration/ExeConfigurationFileMapTest.cs: new test.

svn path=/trunk/mcs/; revision=50500

mcs/class/System.Configuration/Test/ChangeLog [new file with mode: 0644]
mcs/class/System.Configuration/Test/System.Configuration/ExeConfigurationFileMapTest.cs [new file with mode: 0644]

diff --git a/mcs/class/System.Configuration/Test/ChangeLog b/mcs/class/System.Configuration/Test/ChangeLog
new file mode 100644 (file)
index 0000000..fd92aa1
--- /dev/null
@@ -0,0 +1,4 @@
+2005-09-22  Chris Toshok  <toshok@ximian.com>
+
+       * System.Configuration/ExeConfigurationFileMapTest.cs: new test.
+
diff --git a/mcs/class/System.Configuration/Test/System.Configuration/ExeConfigurationFileMapTest.cs b/mcs/class/System.Configuration/Test/System.Configuration/ExeConfigurationFileMapTest.cs
new file mode 100644 (file)
index 0000000..d1fbb26
--- /dev/null
@@ -0,0 +1,69 @@
+//
+// System.Configuration.ExeConfigurationFileMapTest.cs - Unit tests
+// for System.Configuration.ExeConfigurationFileMap.
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using System;
+using System.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Configuration {
+       [TestFixture]
+       public class ExeConfigurationFileMapTest
+       {
+               [Test]
+               public void Properties ()
+               {
+                       ExeConfigurationFileMap map = new ExeConfigurationFileMap ();
+
+                       /* defaults */
+                       Assert.AreEqual ("", map.ExeConfigFilename, "A1");
+                       Assert.AreEqual ("", map.LocalUserConfigFilename, "A2");
+                       Assert.AreEqual ("", map.RoamingUserConfigFilename, "A2");
+
+                       /* setter */
+                       map.ExeConfigFilename = "foo";
+                       Assert.AreEqual ("foo", map.ExeConfigFilename, "A3");
+                       map.LocalUserConfigFilename = "bar";
+                       Assert.AreEqual ("bar", map.LocalUserConfigFilename, "A4");
+                       map.RoamingUserConfigFilename = "baz";
+                       Assert.AreEqual ("baz", map.RoamingUserConfigFilename, "A5");
+
+                       /* null setter */
+                       map.ExeConfigFilename = null;
+                       Assert.IsNull (map.ExeConfigFilename, "A6");
+                       map.LocalUserConfigFilename = null;
+                       Assert.IsNull (map.LocalUserConfigFilename, "A7");
+                       map.RoamingUserConfigFilename = null;
+                       Assert.IsNull (map.RoamingUserConfigFilename, "A8");
+               }
+       }
+}
+
+#endif