Moving WindowsBase into the mcs tree
[mono.git] / mcs / class / WindowsBase / Test / System.Windows / PointTest.cs
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.
19 //
20 // Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
21 //
22 // Authors:
23 //      Chris Toshok (toshok@ximian.com)
24 //
25
26 using System;
27 using System.Windows;
28 using System.Windows.Media;
29 using NUnit.Framework;
30
31 namespace MonoTests.System.Windows {
32
33         [TestFixture]
34         [Category ("NotWorking")]
35         public class PointTest {
36
37                 [Test]
38                 public void Accessors ()
39                 {
40                         Point p = new Point (4, 5);
41                         Assert.AreEqual (4, p.X);
42                         Assert.AreEqual (5, p.Y);
43                 }
44
45                 [Test]
46                 public void Equals ()
47                 {
48                         Point p = new Point (4, 5);
49                         Assert.IsTrue (p.Equals (new Point (4, 5)));
50                         Assert.IsFalse (p.Equals (new Point (5, 4)));
51                         Assert.IsFalse (p.Equals (new object()));
52                 }
53
54                 [Test]
55                 public void ToStringTest ()
56                 {
57                         Point p = new Point (4, 5);
58                         Assert.AreEqual ("4,5", p.ToString());
59                 }
60
61                 [Test]
62                 public void Parse ()
63                 {
64                         Point p = Point.Parse ("4,5");
65                         Assert.AreEqual (new Point (4, 5), p);
66
67                         p = Point.Parse ("-4,-5");
68                         Assert.AreEqual (new Point (-4, -5), p);
69
70                         p = Point.Parse ("-4.4,-5.5");
71                         Assert.AreEqual (new Point (-4.4, -5.5), p);
72                 }
73
74                 [Test]
75                 public void Offset ()
76                 {
77                         Point p = new Point (4, 5);
78                         p.Offset (3, 4);
79                         Assert.AreEqual (new Point (7, 9), p);
80                 }
81
82                 [Test]
83                 public void Add ()
84                 {
85                         Point p = Point.Add (new Point (4, 5), new Vector (2, 3));
86                         Assert.AreEqual (new Point (6, 8), p);
87                 }
88
89                 [Test]
90                 public void Subtract1 ()
91                 {
92                         Point p = Point.Subtract (new Point (4, 5), new Vector (2, 3));
93                         Assert.AreEqual (new Point (2, 2), p);
94                 }
95
96                 [Test]
97                 public void Subtract2 ()
98                 {
99                         Vector v = Point.Subtract (new Point (4, 5), new Point (2, 3));
100                         Assert.AreEqual (new Vector (2, 2), v);
101                 }
102
103                 [Test]
104                 public void Multiply ()
105                 {
106                         Matrix m = Matrix.Identity;
107                         m.Scale (2, 2);
108
109                         Point p = Point.Multiply (new Point (2, 3), m);
110
111                         Assert.AreEqual (new Point (4, 6), p);
112                 }
113         }
114
115 }
116