maui-linux/Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs

50 строки
1012 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using NUnit.Framework;
using Xamarin.Forms.Core.UnitTests;
2016-03-22 23:02:25 +03:00
namespace Xamarin.Forms.Xaml.UnitTests
{
public partial class StringLiterals : ContentPage
{
public StringLiterals ()
{
InitializeComponent ();
}
public StringLiterals (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;
}
2016-03-22 23:02:25 +03:00
[TestCase(false)]
[TestCase(true)]
public void EscapedStringsAreTreatedAsLiterals (bool useCompiledXaml)
{
var layout = new StringLiterals (useCompiledXaml);
Assert.AreEqual ("Foo", layout.label0.Text);
Assert.AreEqual ("{Foo}", layout.label1.Text);
Assert.AreEqual ("Foo", layout.label2.Text);
Assert.AreEqual ("Foo", layout.label3.Text);
}
}
}
}