Skip to content

Commit 63cf3a4

Browse files
committed
chore: add GlobalUsings.cs with project-wide using directives in algorithms tests
1 parent 767c45a commit 63cf3a4

File tree

205 files changed

+84
-668
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+84
-668
lines changed

Algorithms.Tests/Compressors/BurrowsWheelerTransformTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using Algorithms.DataCompression;
2-
using NUnit.Framework;
3-
using NUnit.Framework.Internal;
42

53
namespace Algorithms.Tests.Compressors;
64

Algorithms.Tests/Compressors/HuffmanCompressorTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using Algorithms.DataCompression;
22
using Algorithms.Sorters.Comparison;
3-
using FluentAssertions;
4-
using NUnit.Framework;
5-
using NUnit.Framework.Internal;
63

74
namespace Algorithms.Tests.Compressors;
85

Algorithms.Tests/Compressors/ShannonFanoCompressorTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using Algorithms.DataCompression;
22
using Algorithms.Knapsack;
3-
using NUnit.Framework;
4-
using NUnit.Framework.Internal;
53

64
namespace Algorithms.Tests.Compressors;
75

Algorithms.Tests/Compressors/TranslatorTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System.Collections.Generic;
21
using Algorithms.DataCompression;
3-
using NUnit.Framework;
42

53
namespace Algorithms.Tests.Compressors;
64

Algorithms.Tests/Crypto/Digests/AsconDigestTests.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
using System;
2-
using System.Text;
31
using Algorithms.Crypto.Digests;
42
using Algorithms.Crypto.Exceptions;
5-
using FluentAssertions;
6-
using NUnit.Framework;
73

84
namespace Algorithms.Tests.Crypto.Digests;
95

Algorithms.Tests/Crypto/Digests/Md2DigestTests.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
using System;
2-
using System.Text;
3-
using Algorithms.Crypto.Digests;
4-
using FluentAssertions;
5-
using NUnit.Framework;
1+
using Algorithms.Crypto.Digests;
62

73
namespace Algorithms.Tests.Crypto.Digesters;
84

Algorithms.Tests/Crypto/Exceptions/CryptoExceptionTests.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using Algorithms.Crypto.Exceptions;
2-
using NUnit.Framework;
3-
using FluentAssertions;
4-
using System;
5-
62

73
namespace Algorithms.Tests.Crypto.Exceptions
84
{

Algorithms.Tests/Crypto/Exceptions/DataLengthExceptionTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using NUnit.Framework;
2-
using FluentAssertions;
3-
using System;
41
using Algorithms.Crypto.Exceptions;
52

63
namespace Algorithms.Tests.Crypto.Exceptions

Algorithms.Tests/Crypto/Exceptions/OutputLengthExceptionTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using NUnit.Framework;
2-
using FluentAssertions;
3-
using System;
41
using Algorithms.Crypto.Exceptions;
52

63
namespace Algorithms.Tests.Crypto.Exceptions

Algorithms.Tests/Crypto/Paddings/Iso10126D2PaddingTests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using Algorithms.Crypto.Paddings;
3-
using FluentAssertions;
4-
using NUnit.Framework;
1+
using Algorithms.Crypto.Paddings;
52

63
namespace Algorithms.Tests.Crypto.Paddings;
74

0 commit comments

Comments
 (0)