Browse Source

Assert inconclusive for unimplemented features.

pull/12/merge
Steven Kirk 11 years ago
parent
commit
1774efdb3e
  1. 8
      Perspex.Styling.UnitTests/SelectorTests_Descendent.cs

8
Perspex.Styling.UnitTests/SelectorTests_Descendent.cs

@ -19,7 +19,7 @@ namespace Perspex.Styling.UnitTests
[TestMethod]
public void Descendent_Matches_Control_When_It_Is_Child_OfType()
{
throw new NotImplementedException();
Assert.Inconclusive("Need to implement logical tree.");
////var parent = new Mock<TestLogical1>();
////var child = new Mock<TestLogical2>();
@ -33,7 +33,7 @@ namespace Perspex.Styling.UnitTests
[TestMethod]
public void Descendent_Matches_Control_When_It_Is_Descendent_OfType()
{
throw new NotImplementedException();
Assert.Inconclusive("Need to implement logical tree.");
////var grandparent = new Mock<TestLogical1>();
////var parent = new Mock<TestLogical2>();
////var child = new Mock<TestLogical3>();
@ -49,7 +49,7 @@ namespace Perspex.Styling.UnitTests
[TestMethod]
public void Descendent_Matches_Control_When_It_Is_Descendent_OfType_And_Class()
{
throw new NotImplementedException();
Assert.Inconclusive("Need to implement logical tree.");
////var grandparent = new Mock<TestLogical1>();
////var parent = new Mock<TestLogical2>();
////var child = new Mock<TestLogical3>();
@ -67,7 +67,7 @@ namespace Perspex.Styling.UnitTests
[TestMethod]
public void Descendent_Doesnt_Match_Control_When_It_Is_Descendent_OfType_But_Wrong_Class()
{
throw new NotImplementedException();
Assert.Inconclusive("Need to implement logical tree.");
////var grandparent = new Mock<TestLogical1>();
////var parent = new Mock<TestLogical2>();
////var child = new Mock<TestLogical3>();

Loading…
Cancel
Save