Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / class / System / Test / System.ComponentModel / DefaultBindingPropertyAttributeTest.cs
1 //
2 // Permission is hereby granted, free of charge, to any person obtaining
3 // a copy of this software and associated documentation files (the
4 // "Software"), to deal in the Software without restriction, including
5 // without limitation the rights to use, copy, modify, merge, publish,
6 // distribute, sublicense, and/or sell copies of the Software, and to
7 // permit persons to whom the Software is furnished to do so, subject to
8 // the following conditions:
9 // 
10 // The above copyright notice and this permission notice shall be
11 // included in all copies or substantial portions of the Software.
12 // 
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
17 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
18 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
19 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 //
21 // Copyright (C) 2006 Novell, Inc (http://www.novell.com)
22
23 #if NET_2_0
24
25 using NUnit.Framework;
26 using System;
27 using System.IO;
28 using System.Collections.Specialized;
29 using System.ComponentModel;
30 using System.Xml.Serialization;
31
32 namespace MonoTests.System.ComponentModel {
33
34         [TestFixture]
35         public class DefaultBindingPropertyAttributeTest {
36
37                 [Test]
38                 public void CtorTest ()
39                 {
40                         DefaultBindingPropertyAttribute a;
41
42                         a = new DefaultBindingPropertyAttribute ("test");
43                         Assert.AreEqual ("test", a.Name, "1");
44
45                         a = new DefaultBindingPropertyAttribute ();
46                         Assert.AreEqual (null, a.Name, "2");
47                 }
48
49                 [Test]
50                 public void EqualsTest ()
51                 {
52                         DefaultBindingPropertyAttribute a;
53
54                         a = new DefaultBindingPropertyAttribute ("test");
55                         Assert.IsFalse (a.Equals (null), "1");
56                         Assert.IsFalse (a.Equals (new DefaultBindingPropertyAttribute ("other")), "2");
57                         Assert.IsFalse (a.Equals (new DefaultBindingPropertyAttribute ("Test")), "3");
58                         Assert.IsTrue (a.Equals (new DefaultBindingPropertyAttribute ("test")), "4");
59                 }
60
61                 [Test]
62                 public void GetHashCodeTest ()
63                 {
64                         DefaultBindingPropertyAttribute a;
65
66                         a = new DefaultBindingPropertyAttribute ("test");
67                         Assert.IsFalse (0 == a.GetHashCode (), "1");
68                 }
69
70                 [Test]
71                 public void DefaultTest ()
72                 {
73                         Assert.AreEqual (DefaultBindingPropertyAttribute.Default, new DefaultBindingPropertyAttribute (), "1");
74                 }
75         }
76
77 }
78
79 #endif