Some simple focus unit tests.
[mono.git] / mcs / class / Managed.Windows.Forms / Test / System.Windows.Forms / DataGridViewAdvancedBorderStyleTest.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2005 Novell, Inc. (http://www.novell.com)
21 //
22 // Author:
23 //      Pedro Martínez Juliá <pedromj@gmail.com>
24 //
25
26
27 #if NET_2_0
28
29 using NUnit.Framework;
30 using System;
31 using System.Drawing;
32 using System.Windows.Forms;
33 using System.ComponentModel;
34 using System.Collections;
35
36 namespace MonoTests.System.Windows.Forms {
37
38         [TestFixture]
39         public class DataGridViewAdvancedBorderStyleTest : Assertion {
40
41                 private DataGridViewAdvancedBorderStyle style;
42                 
43                 [SetUp]
44                 public void GetReady() {
45                         style = new DataGridViewAdvancedBorderStyle();
46                 }
47
48                 [TearDown]
49                 public void Clean() {
50                 }
51
52                 [Test]
53                 public void TestDefaultValues () {
54                         AssertEquals("All property before any change", DataGridViewAdvancedCellBorderStyle.None, style.All);
55                         style.Left = DataGridViewAdvancedCellBorderStyle.Single;
56                         AssertEquals("All property after changes", DataGridViewAdvancedCellBorderStyle.NotSet, style.All);
57                         style.All = DataGridViewAdvancedCellBorderStyle.Single;
58                         AssertEquals("All property after changes", DataGridViewAdvancedCellBorderStyle.Single, style.All);
59                         AssertEquals("Left property after changes", DataGridViewAdvancedCellBorderStyle.Single, style.Left);
60                         AssertEquals("Right property after changes", DataGridViewAdvancedCellBorderStyle.Single, style.Right);
61                         AssertEquals("Top property after changes", DataGridViewAdvancedCellBorderStyle.Single, style.Top);
62                         AssertEquals("Bottom property after changes", DataGridViewAdvancedCellBorderStyle.Single, style.Bottom);
63                 }
64
65                 [Test]
66                 [ExpectedException(typeof(InvalidEnumArgumentException))]
67                 public void TestLeftInvalidEnumArgumentException () {
68                         style.Left = (DataGridViewAdvancedCellBorderStyle) 8;
69                 }
70
71                 [Test]
72                 [ExpectedException(typeof(ArgumentException))]
73                 public void TestLeftArgumentException1 () {
74                         style.Left = DataGridViewAdvancedCellBorderStyle.NotSet;
75                 }
76
77                 /*
78                 [Test]
79                 [ExpectedException(typeof(ArgumentException))]
80                 public void TestLeftArgumentException2 () {
81                         Control.RightToLeft = true;
82                         style.Left = DataGridViewAdvancedCellBorderStyle.InsetDouble;
83                 }
84
85                 [Test]
86                 [ExpectedException(typeof(ArgumentException))]
87                 public void TestLeftArgumentException3 () {
88                         Control.RightToLeft = true;
89                         style.Left = DataGridViewAdvancedCellBorderStyle.OutsetDouble;
90                 }
91                 */
92
93                 [Test]
94                 [ExpectedException(typeof(InvalidEnumArgumentException))]
95                 public void TestRightInvalidEnumArgumentException () {
96                         style.Right = (DataGridViewAdvancedCellBorderStyle) 8;
97                 }
98
99                 [Test]
100                 [ExpectedException(typeof(ArgumentException))]
101                 public void TestRightArgumentException1 () {
102                         style.Right = DataGridViewAdvancedCellBorderStyle.NotSet;
103                 }
104
105                 /*
106                 [Test]
107                 [ExpectedException(typeof(ArgumentException))]
108                 public void TestRightArgumentException2 () {
109                         Control.RightToLeft = false;
110                         style.Right = DataGridViewAdvancedCellBorderStyle.InsetDouble;
111                 }
112
113                 [Test]
114                 [ExpectedException(typeof(ArgumentException))]
115                 public void TestRightArgumentException3 () {
116                         Control.RightToLeft = false;
117                         style.Right = DataGridViewAdvancedCellBorderStyle.OutsetDouble;
118                 }
119                 */
120
121                 [Test]
122                 [ExpectedException(typeof(InvalidEnumArgumentException))]
123                 public void TestTopInvalidEnumArgumentException () {
124                         style.Top = (DataGridViewAdvancedCellBorderStyle) 8;
125                 }
126
127                 [Test]
128                 [ExpectedException(typeof(ArgumentException))]
129                 public void TestTopArgumentException () {
130                         style.Top = DataGridViewAdvancedCellBorderStyle.NotSet;
131                 }
132
133                 [Test]
134                 [ExpectedException(typeof(InvalidEnumArgumentException))]
135                 public void TestBottomInvalidEnumArgumentException () {
136                         style.Bottom = (DataGridViewAdvancedCellBorderStyle) 8;
137                 }
138
139                 [Test]
140                 [ExpectedException(typeof(ArgumentException))]
141                 public void TestBottomArgumentException () {
142                         style.Bottom = DataGridViewAdvancedCellBorderStyle.NotSet;
143                 }
144
145         }
146
147 }
148
149 #endif