diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-10-04 18:08:23 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-10-04 18:08:23 +0700 |
commit | 535df8e9e32eaab273a981e9998eacacf75f4164 (patch) | |
tree | 9fd30b89236181373fd2ef5827a1769c7b594eaa /crypto/test/src | |
parent | format changes only - relates to github #68 (diff) | |
download | BouncyCastle.NET-ed25519-535df8e9e32eaab273a981e9998eacacf75f4164.tar.xz |
Fix test namespaces
Diffstat (limited to 'crypto/test/src')
-rw-r--r-- | crypto/test/src/test/GcmSivTest.cs | 6 | ||||
-rw-r--r-- | crypto/test/src/test/ParallelHashTest.cs | 3 | ||||
-rw-r--r-- | crypto/test/src/test/SP80038GTest.cs | 8 | ||||
-rw-r--r-- | crypto/test/src/test/TupleHashTest.cs | 2 |
4 files changed, 7 insertions, 12 deletions
diff --git a/crypto/test/src/test/GcmSivTest.cs b/crypto/test/src/test/GcmSivTest.cs index 03f1003f4..ab86e03cd 100644 --- a/crypto/test/src/test/GcmSivTest.cs +++ b/crypto/test/src/test/GcmSivTest.cs @@ -1,17 +1,15 @@ +using System; using NUnit.Framework; using Org.BouncyCastle.Crypto; -using Org.BouncyCastle.Crypto.Digests; -using Org.BouncyCastle.Crypto.Engines; -using Org.BouncyCastle.Crypto.Encodings; using Org.BouncyCastle.Crypto.Modes; using Org.BouncyCastle.Crypto.Parameters; using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Encoders; using Org.BouncyCastle.Utilities.Test; -namespace Org.BouncyCastle.Crypto.Tests +namespace Org.BouncyCastle.Tests { /** diff --git a/crypto/test/src/test/ParallelHashTest.cs b/crypto/test/src/test/ParallelHashTest.cs index 4edffc7c3..2c8cac637 100644 --- a/crypto/test/src/test/ParallelHashTest.cs +++ b/crypto/test/src/test/ParallelHashTest.cs @@ -2,13 +2,12 @@ using System; using NUnit.Framework; -using Org.BouncyCastle.Crypto.Engines; using Org.BouncyCastle.Crypto.Digests; using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Encoders; using Org.BouncyCastle.Utilities.Test; -namespace Org.BouncyCastle.Crypto.Tests +namespace Org.BouncyCastle.Tests { [TestFixture] diff --git a/crypto/test/src/test/SP80038GTest.cs b/crypto/test/src/test/SP80038GTest.cs index 0d2426c60..7f9e4d3d4 100644 --- a/crypto/test/src/test/SP80038GTest.cs +++ b/crypto/test/src/test/SP80038GTest.cs @@ -1,18 +1,16 @@ +using System; using NUnit.Framework; -using System; - using Org.BouncyCastle.Crypto; -using Org.BouncyCastle.Crypto.Digests; -using Org.BouncyCastle.Crypto.Utilities; using Org.BouncyCastle.Crypto.Fpe; using Org.BouncyCastle.Crypto.Parameters; +using Org.BouncyCastle.Crypto.Utilities; using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Encoders; using Org.BouncyCastle.Utilities.Test; -namespace Org.BouncyCastle.Crypto.Tests +namespace Org.BouncyCastle.Tests { [TestFixture] public class SP80038GTest diff --git a/crypto/test/src/test/TupleHashTest.cs b/crypto/test/src/test/TupleHashTest.cs index f212f4abe..4d92ee7fe 100644 --- a/crypto/test/src/test/TupleHashTest.cs +++ b/crypto/test/src/test/TupleHashTest.cs @@ -7,7 +7,7 @@ using Org.BouncyCastle.Utilities; using Org.BouncyCastle.Utilities.Encoders; using Org.BouncyCastle.Utilities.Test; -namespace Org.BouncyCastle.Crypto.Tests +namespace Org.BouncyCastle.Tests { [TestFixture] /** |