summary refs log tree commit diff
path: root/crypto/test/src/math/ec
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@gmail.com>2022-06-23 01:24:31 +0700
committerPeter Dettman <peter.dettman@gmail.com>2022-06-23 01:24:31 +0700
commit99affc58acf520f25ac7365ad6bb895da8c04a0a (patch)
tree4c85ff5e1009a652cc2971ccdc4083e0dfede805 /crypto/test/src/math/ec
parentRemove Main methods from test classes (diff)
downloadBouncyCastle.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.cs25
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