diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 01:24:31 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 01:24:31 +0700 |
commit | 99affc58acf520f25ac7365ad6bb895da8c04a0a (patch) | |
tree | 4c85ff5e1009a652cc2971ccdc4083e0dfede805 /crypto/test/src/math/ec | |
parent | Remove Main methods from test classes (diff) | |
download | BouncyCastle.NET-ed25519-99affc58acf520f25ac7365ad6bb895da8c04a0a.tar.xz |
Cleanup redundant test classes
Diffstat (limited to 'crypto/test/src/math/ec')
-rw-r--r-- | crypto/test/src/math/ec/test/AllTests.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/crypto/test/src/math/ec/test/AllTests.cs b/crypto/test/src/math/ec/test/AllTests.cs deleted file mode 100644 index 7fdb77d07..000000000 --- a/crypto/test/src/math/ec/test/AllTests.cs +++ /dev/null @@ -1,25 +0,0 @@ -#if !LIB -using System; - -using NUnit.Core; -using NUnit.Framework; - -namespace Org.BouncyCastle.Math.EC.Tests -{ - public class AllTests - { - [Suite] - public static TestSuite Suite - { - get - { - TestSuite suite = new TestSuite("EC Math tests"); - suite.Add(new ECAlgorithmsTest()); - suite.Add(new ECPointTest()); - suite.Add(new FixedPointTest()); - return suite; - } - } - } -} -#endif |