[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / class / WindowsBase / Test / System.Windows / Int32RectConverterTest.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         public class Int32RectConverterTest
35         {
36                 [Test]
37                 public void CanConvertFrom ()
38                 {
39                         Int32RectConverter r = new Int32RectConverter ();
40
41                         Assert.IsTrue (r.CanConvertFrom (typeof (string)));
42                         Assert.IsFalse (r.CanConvertFrom (typeof (Int32Rect)));
43                         Assert.IsFalse (r.CanConvertFrom (typeof (Size)));
44                 }
45
46                 [Test]
47                 public void CanConvertTo ()
48                 {
49                         Int32RectConverter r = new Int32RectConverter ();
50
51                         Assert.IsTrue (r.CanConvertTo (typeof (string)));
52                         Assert.IsFalse (r.CanConvertTo (typeof (Int32Rect)));
53                         Assert.IsFalse (r.CanConvertTo (typeof (Size)));
54                 }
55
56                 [Test]
57                 [Category ("NotWorking")]
58                 public void ConvertFrom ()
59                 {
60                         Int32RectConverter r = new Int32RectConverter ();
61
62                         object or = r.ConvertFrom ("1, 2, 3, 4");
63                         
64                         Assert.AreEqual (typeof (Int32Rect), or.GetType());
65                         Assert.AreEqual (new Int32Rect (1, 2, 3, 4), or);
66
67                         or = r.ConvertFrom ("Empty");
68                         Assert.AreEqual (typeof (Int32Rect), or.GetType());
69                         Assert.IsTrue (((Int32Rect)or).IsEmpty);
70                 }
71
72                 [Test]
73                 [ExpectedException (typeof (NotSupportedException))]
74                 public void ConvertFrom_size ()
75                 {
76                         Int32RectConverter r = new Int32RectConverter ();
77
78                         r.ConvertFrom (new Size (10, 20));
79                 }
80
81                 [Test]
82                 [Category ("NotWorking")]
83                 public void ConvertFrom_negative ()
84                 {
85                         Int32RectConverter r = new Int32RectConverter ();
86                         object or = r.ConvertFrom ("1, 2, -4, -5");
87
88                         Assert.AreEqual (typeof (Int32Rect), or.GetType());
89                         Assert.AreEqual (new Int32Rect (1, 2, -4, -5), or);
90                 }
91
92                 [Test]
93                 [Category ("NotWorking")]
94                 public void ConvertTo ()
95                 {
96                         Int32RectConverter r = new Int32RectConverter ();
97
98                         Int32Rect rect = new Int32Rect (0, 0, 1, 2);
99
100                         object o = r.ConvertTo (rect, typeof (string));
101                         
102                         Assert.AreEqual (typeof (string), o.GetType());
103                         Assert.AreEqual ("0,0,1,2", (string)o);
104                 }
105         }
106
107 }