blob: 5fe61bee176b0a035c574f311a5af5ad7560f808 (
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
|
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using NUnit.Framework;
namespace Xamarin.Forms.Xaml.UnitTests
{
public partial class TriggerTests : ContentPage
{
public TriggerTests ()
{
InitializeComponent ();
}
public TriggerTests (bool useCompiledXaml)
{
//this stub will be replaced at compile time
}
[TestFixture]
public class Tests
{
[TestCase (false)]
[TestCase (true)]
public void ValueIsConverted (bool useCompiledXaml)
{
var layout = new TriggerTests (useCompiledXaml);
Entry entry = layout.entry;
Assert.NotNull (entry);
var triggers = entry.Triggers;
Assert.IsNotEmpty (triggers);
var pwTrigger = triggers [0] as Trigger;
Assert.AreEqual (Entry.IsPasswordProperty, pwTrigger.Property);
Assert.AreEqual (true, pwTrigger.Value);
}
}
}
}
|