зеркало из https://github.com/DeGsoft/maui-linux.git
59 строки
1.2 KiB
C#
59 строки
1.2 KiB
C#
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);
|
|
}
|
|
}
|
|
}
|
|
} |