summary refs log tree commit diff
path: root/crypto/test/src/crypto/io/test/AllTests.cs
blob: 0296a2dc022fa86bad83ed8befec36ab71b2a735 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;

using NUnit.Core;
using NUnit.Framework;

namespace Org.BouncyCastle.Crypto.IO.Tests
{
	public class AllTests
	{
		public static void Main(
			string[] args)
		{
//            junit.textui.TestRunner.run(suite());
			EventListener el = new NullListener();
			suite().Run(el);
		}

		public static TestSuite suite()
		{
			TestSuite suite = new TestSuite("IO tests");

			suite.Add(new CipherStreamTest());

			return suite;
		}
	}
}