summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs
new file mode 100644
index 00000000..ca5b7cbd
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/IsCompiledSkip.xaml.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using NUnit.Framework;
+using Xamarin.Forms;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ [XamlCompilation (XamlCompilationOptions.Skip)]
+ public partial class IsCompiledSkip : ContentPage
+ {
+ public IsCompiledSkip ()
+ {
+ InitializeComponent ();
+ }
+
+ public IsCompiledSkip (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ public class Tests
+ {
+ [TestCase (false)]
+ [TestCase (true)]
+ public void IsCompiled (bool useCompiledXaml)
+ {
+ var layout = new IsCompiledDefault (useCompiledXaml);
+ Assert.AreEqual (false, typeof (IsCompiledSkip).IsCompiled ());
+ }
+ }
+ }
+} \ No newline at end of file