2007-02-05 Adar Wesley <adarw@mainsoft.com>
[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 #if NET_2_0
30 using NUnit.Framework;
31 using System;
32 using System.IO;
33 using System.Globalization;
34 using System.Web;
35 using System.Web.UI;
36 using System.Web.UI.WebControls;
37 using MonoTests.stand_alone.WebHarness;
38 using MonoTests.SystemWeb.Framework;
39
40 namespace MonoTests.System.Web.UI.WebControls
41 {
42     [TestFixture]
43     public class CircleHotSpotTest
44     {
45
46         [Test]
47         public void CircleHotSpot_DefaultProperties()
48         {
49             CircleHotSpot circle = new CircleHotSpot();
50             Assert.AreEqual(0, circle.Radius, "Radius");
51             Assert.AreEqual(0, circle.X, "X-coordinate");
52             Assert.AreEqual(0, circle.Y, "Y-coordinate");
53         }
54
55         [Test]
56         public void CircleHotSpot_AssignToDefaultProperties()
57         {
58             CircleHotSpot circle = new CircleHotSpot();
59             circle.Radius = 0;
60             Assert.AreEqual(0, circle.Radius, "Radius");
61             circle.X = 0;
62             Assert.AreEqual(0, circle.X, "X-coordinate");
63             circle.Y = 0;
64             Assert.AreEqual(0, circle.Y, "Y-coordinate");
65         }
66
67         [Test]
68                 [ExpectedException (typeof (ArgumentOutOfRangeException))]      
69         public void CircleHotSpot_ExpRadius()
70         {
71             // The specified value is less than 0
72             CircleHotSpot circle = new CircleHotSpot();
73             circle.Radius = -1;
74         }
75
76         [Test]
77         public void CircleHotSpot_GetCoordinates()
78          {
79             CircleHotSpot circle = new CircleHotSpot();
80             circle.Radius = 20;
81             circle.X = 50;
82             circle.Y = 40;
83             Assert.AreEqual(20, circle.Radius, "BeforeGetCoordinates-Radius");
84             Assert.AreEqual(50, circle.X, "BeforeGetCoordinates-X");
85             Assert.AreEqual(40, circle.Y, "BeforeGetCoordinates-Y");
86             Assert.AreEqual("50,40,20", circle.GetCoordinates(), "AfterGetCoordinates");
87         }
88
89         [Test]
90         public void CircleHotSpot_ToString()
91         {
92             CircleHotSpot circle = new CircleHotSpot();
93             Assert.AreEqual("CircleHotSpot", circle.ToString(), "After-ToString");
94         }
95     }
96 }
97
98
99 #endif