summary refs log tree commit diff
path: root/crypto/test/src/util/test/ITest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/test/src/util/test/ITest.cs')
-rw-r--r--crypto/test/src/util/test/ITest.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/crypto/test/src/util/test/ITest.cs b/crypto/test/src/util/test/ITest.cs
new file mode 100644

index 000000000..30ad82780 --- /dev/null +++ b/crypto/test/src/util/test/ITest.cs
@@ -0,0 +1,17 @@ +using System; + +using NUnit.Framework; + +/* + Basic test interface + */ +namespace Org.BouncyCastle.Utilities.Test +{ + public interface ITest + { + string Name { get; } + + [Test] + ITestResult Perform(); + } +}