summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/XStatic.xaml.cs
blob: ff1f01994e9e7e17a590bb4a1d11385b47052c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using System.Collections.Generic;

using Xamarin.Forms;

using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{
	public class MockxStatic
	{
		public static string MockStaticProperty { get { return "Property"; } }
		public const string MockConstant = "Constant";
		public static string MockField = "Field";
		public string InstanceProperty { get { return "InstanceProperty"; } }
		public static readonly Color BackgroundColor = Color.Fuchsia;
	}

	public enum MockEnum
	{
		First,
		Second,
		Third,
	}

	public partial class XStatic : ContentPage
	{
		public XStatic ()
		{
			InitializeComponent ();
		}
		public XStatic (bool useCompiledXaml)
		{
			//this stub will be replaced at compile time
		}

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void StaticProperty (bool useCompiledXaml)
			{
				var layout = new XStatic (useCompiledXaml);
				Assert.AreEqual ("Property", layout.staticproperty.Text);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void MemberOptional (bool useCompiledXaml)
			{
				var layout = new XStatic (useCompiledXaml);
				Assert.AreEqual ("Property", layout.memberisoptional.Text);
			}

			[TestCase (false)]
			[TestCase (true)]
			public void FieldColor (bool useCompiledXaml)
			{
				var layout = new XStatic (useCompiledXaml);
				Assert.AreEqual (Color.Fuchsia, layout.color.TextColor);
			}
		}
	}
}