[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / System.Web / Test / System.Web.UI.WebControls / CircleHotSpotTest.cs
1 //
2 // Tests for System.Web.UI.WebControls.ImageMap.cs
3 //
4 // Author:
5 //  Hagit Yidov (hagity@mainsoft.com
6 //
7 // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using NUnit.Framework;
30 using System;
31 using System.IO;
32 using System.Globalization;
33 using System.Web;
34 using System.Web.UI;
35 using System.Web.UI.WebControls;
36 using MonoTests.stand_alone.WebHarness;
37 using MonoTests.SystemWeb.Framework;
38
39 namespace MonoTests.System.Web.UI.WebControls
40 {
41     [TestFixture]
42     public class CircleHotSpotTest
43     {
44
45         [Test]
46         public void CircleHotSpot_DefaultProperties()
47         {
48             CircleHotSpot circle = new CircleHotSpot();
49             Assert.AreEqual(0, circle.Radius, "Radius");
50             Assert.AreEqual(0, circle.X, "X-coordinate");
51             Assert.AreEqual(0, circle.Y, "Y-coordinate");
52         }
53
54         [Test]
55         public void CircleHotSpot_AssignToDefaultProperties()
56         {
57             CircleHotSpot circle = new CircleHotSpot();
58             circle.Radius = 0;
59             Assert.AreEqual(0, circle.Radius, "Radius");
60             circle.X = 0;
61             Assert.AreEqual(0, circle.X, "X-coordinate");
62             circle.Y = 0;
63             Assert.AreEqual(0, circle.Y, "Y-coordinate");
64         }
65
66         [Test]
67                 [ExpectedException (typeof (ArgumentOutOfRangeException))]      
68         public void CircleHotSpot_ExpRadius()
69         {
70             // The specified value is less than 0
71             CircleHotSpot circle = new CircleHotSpot();
72             circle.Radius = -1;
73         }
74
75         [Test]
76         public void CircleHotSpot_GetCoordinates()
77          {
78             CircleHotSpot circle = new CircleHotSpot();
79             circle.Radius = 20;
80             circle.X = 50;
81             circle.Y = 40;
82             Assert.AreEqual(20, circle.Radius, "BeforeGetCoordinates-Radius");
83             Assert.AreEqual(50, circle.X, "BeforeGetCoordinates-X");
84             Assert.AreEqual(40, circle.Y, "BeforeGetCoordinates-Y");
85             Assert.AreEqual("50,40,20", circle.GetCoordinates(), "AfterGetCoordinates");
86         }
87
88         [Test]
89         public void CircleHotSpot_ToString()
90         {
91             CircleHotSpot circle = new CircleHotSpot();
92             Assert.AreEqual("CircleHotSpot", circle.ToString(), "After-ToString");
93         }
94     }
95 }
96
97