Skip to content

Commit

Permalink
Compiler insists on GenerateDocumentationFile
Browse files Browse the repository at this point in the history
even though not much is documented.
  • Loading branch information
manfred-brands committed Mar 25, 2024
1 parent 9fcb529 commit 1033c4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/NUnitFramework/nunitlite/OutputWriters/OutputWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public abstract class OutputWriter
/// <param name="result">The result to be written</param>
/// <param name="outputPath">Path to the file to which the result is written</param>
/// <param name="runSettings">A dictionary of settings used for this test run</param>
/// <param name="filter">The filter to apply</param>
public void WriteResultFile(ITestResult result, string outputPath, IDictionary<string, object> runSettings, TestFilter filter)
{
using (var stream = new FileStream(outputPath, FileMode.Create))
Expand Down
3 changes: 1 addition & 2 deletions src/NUnitFramework/nunitlite/TextRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class TextRunner : ITestListener
public const int INVALID_ARG = -1;
/// <summary>File not found</summary>
public const int FILE_NOT_FOUND = -2;
/// <summary>Test fixture not found - No longer in use</summary>
///// <summary>Test fixture not found - No longer in use</summary>
//public const int FIXTURE_NOT_FOUND = -3;
/// <summary>Invalid test suite</summary>
public const int INVALID_TEST_FIXTURE = -4;
Expand Down Expand Up @@ -73,7 +73,6 @@ public TextRunner()
/// specifying a test assembly whose tests are to be run.
/// </summary>
/// <param name="testAssembly"></param>
/// </summary>
public TextRunner(Assembly testAssembly)
{
_testAssembly = testAssembly;
Expand Down
2 changes: 2 additions & 0 deletions src/NUnitFramework/nunitlite/nunitlite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<TargetFrameworks>$(NUnitLibraryFrameworks)</TargetFrameworks>
<RootNamespace>NUnitLite</RootNamespace>
<Nullable>disable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 1033c4a

Please sign in to comment.