Merge pull request #2662 from jlewin/design_tools

Covert disabled test filter categories to Ignore attributes
This commit is contained in:
johnlewin 2017-11-15 13:36:54 -08:00 committed by GitHub
commit 2b5e70e664
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

@ -1 +1 @@
Subproject commit ee54ab24e8070c1fbbb2804f6956e4bfa823ec4b
Subproject commit ee965db6f5e838a9b96236e7b3341c6c3535fc21

@ -1 +1 @@
Subproject commit a28848a2104dd5534a36ec1598adb0c25789e2b8
Subproject commit 75ab706c70be2b16e5751bcf95a04071cb8e7d1f

View file

@ -39,7 +39,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
[TestFixture, Ignore("Product code still needs to be implemented"), Category("MatterControl.UI.Automation"), Category("MatterControl.Automation"), RunInApplicationDomain, Apartment(ApartmentState.STA)]
public class LibraryActionTests
{
[Test, Category("FixNeeded" /* Not Finished */)]
[Test, Ignore("Not Finished")]
public async Task ClickOnBuyButton()
{
await MatterControlUtilities.RunTest(testRunner =>
@ -138,7 +138,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
}, queueItemFolderToAdd: QueueTemplate.Three_Queue_Items);
}
[Test, Category("FixNeeded") /* Test now works as expected but product does not implement expected functionality */]
[Test, Ignore("Test now works as expected but product does not implement expected functionality")]
public async Task QueueExportIsDisabledIfEmpty()
{
await MatterControlUtilities.RunTest(testRunner =>
@ -222,7 +222,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
}, queueItemFolderToAdd: QueueTemplate.Three_Queue_Items);
}
[Test, Category("FixNeeded" /* Not Finished */)]
[Test, Ignore("Not Finished")]
public async Task ClickCreatePartSheetButton()
{
await MatterControlUtilities.RunTest(testRunner =>

View file

@ -14,7 +14,7 @@ namespace MatterControl.Tests.MatterControl
[TestFixture]
public class PrinterConfigurationTests
{
[Test, Category("PrinterConfigurationFiles"), Category("FixNeeded" /* Not Finished/previously ignored */)]
[Test, Category("PrinterConfigurationFiles"), Ignore("Not Finished/previously ignored")]
public void PrinterConfigTests()
{
string staticDataPath = TestContext.CurrentContext.ResolveProjectPath(5, "MatterControl", "StaticData");