summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/StringLiterals.xaml.cs37
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