diff options
author | Jason Smith <jason.smith@xamarin.com> | 2016-03-22 13:02:25 -0700 |
---|---|---|
committer | Jason Smith <jason.smith@xamarin.com> | 2016-03-22 16:13:41 -0700 |
commit | 17fdde66d94155fc62a034fa6658995bef6fd6e5 (patch) | |
tree | b5e5073a2a7b15cdbe826faa5c763e270a505729 /Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs | |
download | xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.tar.gz xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.tar.bz2 xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.zip |
Initial import
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs')
-rw-r--r-- | Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs new file mode 100644 index 00000000..256ee5f9 --- /dev/null +++ b/Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; + +using Xamarin.Forms; + +using NUnit.Framework; + +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 + { + [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); + } + } + } +}
\ No newline at end of file |