Skip to content

Commit

Permalink
Merge pull request #1161 from nunit/Issue1110
Browse files Browse the repository at this point in the history
Setting ConsoleOut=1 as default
  • Loading branch information
OsirisTerje committed Apr 9, 2024
2 parents 143b8fc + a1af0cf commit 168982f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NUnitTestAdapter/AdapterSettings.cs
Expand Up @@ -261,7 +261,7 @@ public void Load(string settingsXml)
ShowInternalProperties = GetInnerTextAsBool(nunitNode, nameof(ShowInternalProperties), false);
UseParentFQNForParametrizedTests = GetInnerTextAsBool(nunitNode, nameof(UseParentFQNForParametrizedTests), false);
UseNUnitIdforTestCaseId = GetInnerTextAsBool(nunitNode, nameof(UseNUnitIdforTestCaseId), false);
ConsoleOut = GetInnerTextAsInt(nunitNode, nameof(ConsoleOut), 2); // 0 no output to console, 1 : output to console
ConsoleOut = GetInnerTextAsInt(nunitNode, nameof(ConsoleOut), 1); // 0 no output to console, 1 : output to console, 2: output to console as warnings
StopOnError = GetInnerTextAsBool(nunitNode, nameof(StopOnError), false);
UseNUnitFilter = GetInnerTextAsBool(nunitNode, nameof(UseNUnitFilter), true);
IncludeStackTraceForSuites = GetInnerTextAsBool(nunitNode, nameof(IncludeStackTraceForSuites), true);
Expand Down

0 comments on commit 168982f

Please sign in to comment.