a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
95 lines
2.6 KiB
C#
95 lines
2.6 KiB
C#
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
// Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
|
|
//
|
|
// Authors:
|
|
// Chris Toshok (toshok@ximian.com)
|
|
//
|
|
|
|
using System;
|
|
using System.Windows;
|
|
using System.Windows.Media;
|
|
using NUnit.Framework;
|
|
|
|
namespace MonoTests.System.Windows {
|
|
|
|
[TestFixture]
|
|
public class VectorConverterTest
|
|
{
|
|
[Test]
|
|
public void CanConvertFrom ()
|
|
{
|
|
VectorConverter r = new VectorConverter ();
|
|
|
|
Assert.IsTrue (r.CanConvertFrom (typeof (string)));
|
|
Assert.IsFalse (r.CanConvertFrom (typeof (Vector)));
|
|
}
|
|
|
|
[Test]
|
|
public void CanConvertTo ()
|
|
{
|
|
VectorConverter r = new VectorConverter ();
|
|
|
|
Assert.IsTrue (r.CanConvertTo (typeof (string)));
|
|
Assert.IsFalse (r.CanConvertTo (typeof (Vector)));
|
|
}
|
|
|
|
[Test]
|
|
[Category ("NotWorking")]
|
|
public void ConvertFrom ()
|
|
{
|
|
VectorConverter r = new VectorConverter ();
|
|
|
|
object or = r.ConvertFrom ("3, 4");
|
|
|
|
Assert.AreEqual (typeof (Vector), or.GetType());
|
|
Assert.AreEqual (new Vector (3, 4), or);
|
|
|
|
or = r.ConvertFrom ("-1, -4");
|
|
Assert.AreEqual (typeof (Vector), or.GetType());
|
|
Assert.AreEqual (new Vector (-1, -4), or);
|
|
}
|
|
|
|
[Test]
|
|
[ExpectedException (typeof (NotSupportedException))]
|
|
public void ConvertFrom_size ()
|
|
{
|
|
VectorConverter r = new VectorConverter ();
|
|
|
|
r.ConvertFrom (new Vector (10, 20));
|
|
}
|
|
|
|
[Test]
|
|
[Category ("NotWorking")]
|
|
public void ConvertTo ()
|
|
{
|
|
VectorConverter r = new VectorConverter ();
|
|
|
|
Vector rect = new Vector (1, 2);
|
|
|
|
object o = r.ConvertTo (rect, typeof (string));
|
|
|
|
Assert.AreEqual (typeof (string), o.GetType());
|
|
Assert.AreEqual ("1,2", (string)o);
|
|
}
|
|
}
|
|
|
|
}
|