2007-01-10 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / class / Managed.Windows.Forms / Test / System.Windows.Forms / DataGridViewAdvancedBorderStyleTest.cs
blobfa3089b4475986d54f9fe60f4015fddb20e44237
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.
20 // Copyright (c) 2005,2006 Novell, Inc. (http://www.novell.com)
22 // Author:
23 // Pedro Martínez Juliá <pedromj@gmail.com>
27 #if NET_2_0
29 using NUnit.Framework;
30 using System;
31 using System.Drawing;
32 using System.Windows.Forms;
33 using System.ComponentModel;
34 using System.Collections;
36 namespace MonoTests.System.Windows.Forms {
38 [TestFixture]
39 public class DataGridViewAdvancedBorderStyleTest {
41 private DataGridViewAdvancedBorderStyle style;
43 [SetUp]
44 public void GetReady() {
45 style = new DataGridViewAdvancedBorderStyle();
48 [TearDown]
49 public void Clean() {
52 [Test]
53 public void TestDefaultValues () {
54 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.None, style.All, "#A1");
55 style.Left = DataGridViewAdvancedCellBorderStyle.Single;
56 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.NotSet, style.All, "#A2");
57 style.All = DataGridViewAdvancedCellBorderStyle.Single;
58 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.Single, style.All, "#A3");
59 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.Single, style.Left, "#A4");
60 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.Single, style.Right, "#A5");
61 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.Single, style.Top, "#A6");
62 Assert.AreEqual (DataGridViewAdvancedCellBorderStyle.Single, style.Bottom, "#A7");
65 [Test]
66 [ExpectedException(typeof(InvalidEnumArgumentException))]
67 public void TestLeftInvalidEnumArgumentException () {
68 style.Left = (DataGridViewAdvancedCellBorderStyle) 8;
71 [Test]
72 [ExpectedException(typeof(ArgumentException))]
73 public void TestLeftArgumentException1 () {
74 style.Left = DataGridViewAdvancedCellBorderStyle.NotSet;
78 [Test]
79 [ExpectedException(typeof(ArgumentException))]
80 public void TestLeftArgumentException2 () {
81 Control.RightToLeft = true;
82 style.Left = DataGridViewAdvancedCellBorderStyle.InsetDouble;
85 [Test]
86 [ExpectedException(typeof(ArgumentException))]
87 public void TestLeftArgumentException3 () {
88 Control.RightToLeft = true;
89 style.Left = DataGridViewAdvancedCellBorderStyle.OutsetDouble;
93 [Test]
94 [ExpectedException(typeof(InvalidEnumArgumentException))]
95 public void TestRightInvalidEnumArgumentException () {
96 style.Right = (DataGridViewAdvancedCellBorderStyle) 8;
99 [Test]
100 [ExpectedException(typeof(ArgumentException))]
101 public void TestRightArgumentException1 () {
102 style.Right = DataGridViewAdvancedCellBorderStyle.NotSet;
106 [Test]
107 [ExpectedException(typeof(ArgumentException))]
108 public void TestRightArgumentException2 () {
109 Control.RightToLeft = false;
110 style.Right = DataGridViewAdvancedCellBorderStyle.InsetDouble;
113 [Test]
114 [ExpectedException(typeof(ArgumentException))]
115 public void TestRightArgumentException3 () {
116 Control.RightToLeft = false;
117 style.Right = DataGridViewAdvancedCellBorderStyle.OutsetDouble;
121 [Test]
122 [ExpectedException(typeof(InvalidEnumArgumentException))]
123 public void TestTopInvalidEnumArgumentException () {
124 style.Top = (DataGridViewAdvancedCellBorderStyle) 8;
127 [Test]
128 [ExpectedException(typeof(ArgumentException))]
129 public void TestTopArgumentException () {
130 style.Top = DataGridViewAdvancedCellBorderStyle.NotSet;
133 [Test]
134 [ExpectedException(typeof(InvalidEnumArgumentException))]
135 public void TestBottomInvalidEnumArgumentException () {
136 style.Bottom = (DataGridViewAdvancedCellBorderStyle) 8;
139 [Test]
140 [ExpectedException(typeof(ArgumentException))]
141 public void TestBottomArgumentException () {
142 style.Bottom = DataGridViewAdvancedCellBorderStyle.NotSet;
147 #endif