UserControlTest.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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:
  11. //
  12. // The above copyright notice and this permission notice shall be
  13. // included in all copies or substantial portions of the Software.
  14. //
  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.
  22. //
  23. // Copyright (c) 2006 Daniel Nauck
  24. //
  25. // Authors:
  26. // Daniel Nauck (dna(at)mono-project(dot)de)
  27. using System;
  28. using System.Windows.Forms;
  29. using System.Drawing;
  30. using System.Reflection;
  31. using NUnit.Framework;
  32. using System.Collections;
  33. using System.ComponentModel;
  34. namespace MonoTests.System.Windows.Forms
  35. {
  36. [TestFixture]
  37. public class UserControlTest
  38. {
  39. UserControl uc = null;
  40. [SetUp]
  41. public void SetUp()
  42. {
  43. uc = new UserControl();
  44. }
  45. [Test]
  46. public void PropertyTest()
  47. {
  48. Assert.AreEqual(string.Empty, uc.Text, "#A1");
  49. #if NET_2_0
  50. Assert.AreEqual(BorderStyle.None, uc.BorderStyle, "#A2");
  51. uc.BorderStyle = BorderStyle.Fixed3D;
  52. Assert.AreEqual(BorderStyle.Fixed3D, uc.BorderStyle, "#A3");
  53. uc.BorderStyle = BorderStyle.FixedSingle;
  54. Assert.AreEqual(BorderStyle.FixedSingle, uc.BorderStyle, "#A4");
  55. uc.BorderStyle = BorderStyle.None;
  56. Assert.AreEqual(BorderStyle.None, uc.BorderStyle, "#A5");
  57. #endif
  58. }
  59. #if NET_2_0
  60. [Test]
  61. [ExpectedException(typeof(InvalidEnumArgumentException))]
  62. public void BorderStyleInvalidEnumArgumentException()
  63. {
  64. uc.BorderStyle = (BorderStyle) 9999;
  65. }
  66. #endif
  67. }
  68. }