-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
BuiltInConversions.xaml.cs
59 lines (49 loc) · 1.24 KB
/
BuiltInConversions.xaml.cs
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using NUnit.Framework;
using Xamarin.Forms.Core.UnitTests;
namespace Xamarin.Forms.Xaml.UnitTests
{
public partial class BuiltInConversions : ContentPage
{
public BuiltInConversions ()
{
InitializeComponent ();
}
public BuiltInConversions(bool useCompiledXaml)
{
//this stub will be replaced at compile time
}
[TestFixture]
public class Tests
{
[SetUp]
public void Setup()
{
Device.PlatformServices = new MockPlatformServices();
}
[TearDown]
public void TearDown()
{
Device.PlatformServices = null;
}
[TestCase(false)]
[TestCase(true)]
public void Datetime (bool useCompiledXaml)
{
var layout = new BuiltInConversions (useCompiledXaml);
Assert.AreEqual (new DateTime (2015, 01, 16), layout.datetime0.Date);
Assert.AreEqual (new DateTime (2015, 01, 16), layout.datetime1.Date);
}
[TestCase(false)]
[TestCase(true)]
public void String (bool useCompiledXaml)
{
var layout = new BuiltInConversions (useCompiledXaml);
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);
}
}
}
}