Disable test debugging
This commit is contained in:
parent
a807f12137
commit
0c3a451562
1 changed files with 3 additions and 3 deletions
|
|
@ -343,7 +343,7 @@ namespace MatterControl.Tests.MatterControl
|
|||
public async Task MultilineStringFieldTest()
|
||||
{
|
||||
var theme = MatterHackers.MatterControl.AppContext.Theme;
|
||||
|
||||
|
||||
var testField = new MultilineStringField(theme);
|
||||
|
||||
await ValidateAgainstValueMap(
|
||||
|
|
@ -433,7 +433,7 @@ namespace MatterControl.Tests.MatterControl
|
|||
await ValidateAgainstValueMap(
|
||||
testField,
|
||||
theme,
|
||||
(field) =>
|
||||
(field) =>
|
||||
{
|
||||
return string.Join(",", field.Content.Children.OfType<MHNumberEdit>().Select(w => w.ActuallNumberEdit.Text).ToArray());
|
||||
},
|
||||
|
|
@ -566,7 +566,7 @@ namespace MatterControl.Tests.MatterControl
|
|||
public static Task ValidateAgainstValueMap(UIField field, ThemeConfig theme, Func<UIField, string> collectValueFromWidget, IEnumerable<ValueMap> valuesMap)
|
||||
{
|
||||
// *************** Enable to investigate/debug/develop new/existing tests ************************
|
||||
bool investigateDebugTests = true;
|
||||
bool investigateDebugTests = false;
|
||||
var perItemDelay = (investigateDebugTests) ? 1000 : 0;
|
||||
|
||||
var testsWindow = new UIFieldTestWindow(500, 200, field, theme);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue