Exemplo n.º 1
0
 public void TestIsNotControlElementTrue()
 {
     using (var e = new MockA11yElement())
     {
         Assert.IsTrue(IsNotControlElement.Matches(e));
     } // using
 }
Exemplo n.º 2
0
 public void TestIsNotControlElementFalse()
 {
     using (var e = new MockA11yElement())
     {
         e.IsControlElement = true;
         Assert.IsFalse(IsNotControlElement.Matches(e));
     } // using
 }