summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/BuiltInConversions.xaml.cs
blob: 20d4afd2409e4a98ba12e18a5a4009f158a50691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;

using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{
	public partial class BuiltInConversions : ContentPage
	{
		public BuiltInConversions ()
		{
			InitializeComponent ();
		}

		[TestFixture]
		public class Tests
		{
			[Test]
			public void Datetime ()
			{
				var layout = new BuiltInConversions ();

				Assert.AreEqual (new DateTime (2015, 01, 16), layout.datetime0.Date);
				Assert.AreEqual (new DateTime (2015, 01, 16), layout.datetime1.Date);
			}

			[Test]
			public void String ()
			{
				var layout = new BuiltInConversions ();

				Assert.AreEqual ("foobar", layout.label0.Text);
				Assert.AreEqual ("foobar", layout.label1.Text);

				//Issue #2122, implicit content property not trimmed
				Assert.AreEqual ("foobar", layout.label2.Text);
			}
		}
	}
}