Skip to content

Commit

Permalink
Disable unreliable tests (#319)
Browse files Browse the repository at this point in the history
* Disable unreliable tests

* Add issue# for disabled tests
  • Loading branch information
kaiguo authored Feb 16, 2019
1 parent 0501684 commit 8ef249f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion dev/RatingControl/InteractionTests/RatingControlTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ public void GamepadTest()
}
}

[TestMethod]
//Test failures with keyboard/gamepad/mousewheel input #269
//[TestMethod]
public void VerifyThatProgrammaticallyRemovingEngagementResetsValue()
{
using (var setup = new TestSetupHelper("RatingControl Tests")) // This literally clicks the button corresponding to the test page.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,9 @@ public void VerifyScrollViewerIgnoresGamepadInput()
}
}

[TestMethod]
[TestProperty("Description", "Tests GamePad interaction")]
//Test failures with keyboard/gamepad/mousewheel input #269
//[TestMethod]
//[TestProperty("Description", "Tests GamePad interaction")]
public void VerifyScrollViewerGamePadHorizontalInteraction()
{
if (PlatformConfiguration.IsOSVersionLessThan(OSVersion.Redstone4))
Expand Down
5 changes: 3 additions & 2 deletions dev/Scroller/InteractionTests/ScrollerTestsWithInputHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -666,8 +666,9 @@ public void PinchRectangleWithMouseWheel()
}
}

[TestMethod]
[TestProperty("Description", "Stretch an Image in a Scroller with the mouse wheel.")]
//Test failures with keyboard/gamepad/mousewheel input #269
//[TestMethod]
//[TestProperty("Description", "Stretch an Image in a Scroller with the mouse wheel.")]
public void StretchImageWithMouseWheel()
{
Log.Comment("Selecting Scroller tests");
Expand Down
10 changes: 6 additions & 4 deletions dev/TreeView/InteractionTests/TreeViewTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,9 @@ public void TreeViewKeyDownRightToLeftTest_NodeMode()
TreeViewKeyDownRightToLeftTest();
}

[TestMethod]
[TestProperty("TreeViewTestSuite", "A")]
//Test failures with keyboard/gamepad/mousewheel input #269
//[TestMethod]
//[TestProperty("TreeViewTestSuite", "A")]
public void TreeViewKeyDownRightToLeftTest_ContentMode()
{
TreeViewKeyDownRightToLeftTest(isContentMode:true);
Expand Down Expand Up @@ -1712,8 +1713,9 @@ public void TreeViewMultiSelectGamepadTest_NodeMode()
TreeViewMultiSelectGamepadTest();
}

[TestMethod]
[TestProperty("TreeViewTestSuite", "B")]
//Test failures with keyboard/gamepad/mousewheel input #269
//[TestMethod]
//[TestProperty("TreeViewTestSuite", "B")]
public void TreeViewMultiSelectGamepadTest_ContentMode()
{
TreeViewMultiSelectGamepadTest(isContentMode:true);
Expand Down

0 comments on commit 8ef249f

Please sign in to comment.