Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mbalous committed Aug 7, 2023
1 parent 25e1572 commit 95695de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions GZipTool.Test/CompressionAndDecompressionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
using System.Text;
using System.Threading;

namespace GzipTool.Test;
namespace GZipTool.Test;

[TestClass]
public class CompressionAndDecompressionTests
{
[TestMethod]
[DataRow(1, false)]
[DataRow(1, true)]
[DataRow(2, false)]
[DataRow(2, true)]
[DataRow(1, false, DisplayName = "Single threaded")]
[DataRow(1, true, DisplayName = "Single threaded, alternative algo for decompression")]
[DataRow(2, false, DisplayName = "Multi threaded")]
[DataRow(2, true, DisplayName = "Multi threaded, alternative algo for decompression")]
public void TestCompressionAndDecompression(int threadCount, bool useAlternativeDecompression)
{
const string data = "ABAB ABAB ABAB ABAB ABAB ABAB";
Expand Down
2 changes: 1 addition & 1 deletion GZipTool.Test/CustomGzipFooterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.IO;

namespace GzipTool.Test;
namespace GZipTool.Test;

[TestClass]
public class CustomGZipFooterTests
Expand Down

0 comments on commit 95695de

Please sign in to comment.