summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/GenericCollections.xaml.cs
blob: c2891e067ac6914c9a5c8e1158c399bf4a8ff0b0 (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
using System;
using System.Collections.Generic;

using Xamarin.Forms;
using System.Collections.ObjectModel;
using NUnit.Framework;

namespace Xamarin.Forms.Xaml.UnitTests
{
	public class AttachedBP
	{
		public static readonly BindableProperty AttachedBPProperty = BindableProperty.CreateAttached (
			"AttachedBP",
			typeof(GenericCollection),
			typeof(AttachedBP),
			null);

		public static GenericCollection GetAttachedBP(BindableObject bindable)
		{
			throw new NotImplementedException();
		}
	}

	public class GenericCollection : ObservableCollection<object>
	{
	}

	public partial class GenericCollections : ContentPage
	{
		public GenericCollections ()
		{
			InitializeComponent ();
		}

		public GenericCollections (bool useCompiledXaml)
		{
			//this stub will be replaced at compile time
		}

		[TestFixture]
		public class Tests
		{
			[TestCase (false)]
			[TestCase (true)]
			public void SupportsCrookedGenericScenarios (bool useCompiledXaml)
			{
				var p = new GenericCollections ();
				Assert.AreEqual ("Foo", (p.label0.GetValue (AttachedBP.AttachedBPProperty) as GenericCollection) [0]);
			}
		}
	}
}