diff --git a/src/Controls/tests/UITests/Tests/Concepts/InputTransparencyGalleryTests.cs b/src/Controls/tests/UITests/Tests/Concepts/InputTransparencyGalleryTests.cs index f9dfa218badf..48210dfdad95 100644 --- a/src/Controls/tests/UITests/Tests/Concepts/InputTransparencyGalleryTests.cs +++ b/src/Controls/tests/UITests/Tests/Concepts/InputTransparencyGalleryTests.cs @@ -22,15 +22,15 @@ protected override void NavigateToGallery() [Test] public void Simple([Values] Test.InputTransparency test) => RunTest(test.ToString()); - // [Test] - // [Combinatorial] - // public void Matrix([Values] bool rootTrans, [Values] bool rootCascade, [Values] bool nestedTrans, [Values] bool nestedCascade, [Values] bool trans) - // { - // var (clickable, passthru) = Test.InputTransparencyMatrix.States[(rootTrans, rootCascade, nestedTrans, nestedCascade, trans)]; - // var key = Test.InputTransparencyMatrix.GetKey(rootTrans, rootCascade, nestedTrans, nestedCascade, trans, clickable, passthru); + [Test] + [Combinatorial] + public void Matrix([Values] bool rootTrans, [Values] bool rootCascade, [Values] bool nestedTrans, [Values] bool nestedCascade, [Values] bool trans) + { + var (clickable, passthru) = Test.InputTransparencyMatrix.States[(rootTrans, rootCascade, nestedTrans, nestedCascade, trans)]; + var key = Test.InputTransparencyMatrix.GetKey(rootTrans, rootCascade, nestedTrans, nestedCascade, trans, clickable, passthru); - // RunTest(key, clickable, passthru); - // } + RunTest(key, clickable, passthru); + } void RunTest(string test, bool? clickable = null, bool? passthru = null) {