2007-01-10 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / class / Managed.Windows.Forms / Test / System.Windows.Forms / UserControlTest.cs
bloba043ff49c92998015c8a36573a0150da926c527e
1 //
2 // UserControlTest.cs
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 // Copyright (c) 2006 Daniel Nauck
25 // Authors:
26 // Daniel Nauck (dna(at)mono-project(dot)de)
29 using System;
30 using System.Windows.Forms;
31 using System.Drawing;
32 using System.Reflection;
33 using NUnit.Framework;
34 using System.Collections;
35 using System.ComponentModel;
37 namespace MonoTests.System.Windows.Forms
39 [TestFixture]
40 public class UserControlTest
42 UserControl uc = null;
44 [SetUp]
45 public void SetUp()
47 uc = new UserControl();
50 [Test]
51 public void PropertyTest()
53 Assert.AreEqual(string.Empty, uc.Text, "#A1");
55 #if NET_2_0
56 Assert.AreEqual(BorderStyle.None, uc.BorderStyle, "#A2");
57 uc.BorderStyle = BorderStyle.Fixed3D;
58 Assert.AreEqual(BorderStyle.Fixed3D, uc.BorderStyle, "#A3");
59 uc.BorderStyle = BorderStyle.FixedSingle;
60 Assert.AreEqual(BorderStyle.FixedSingle, uc.BorderStyle, "#A4");
61 uc.BorderStyle = BorderStyle.None;
62 Assert.AreEqual(BorderStyle.None, uc.BorderStyle, "#A5");
63 #endif
66 #if NET_2_0
67 [Test]
68 [ExpectedException(typeof(InvalidEnumArgumentException))]
69 public void BorderStyleInvalidEnumArgumentException()
71 uc.BorderStyle = (BorderStyle) 9999;
73 #endif