(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Mono.Security / Test / Mono.Security.Cryptography / MD2ManagedTest.cs
blob4292350a1743e1cb9af018b6ee1f584ecb624e68
1 //
2 // MD2ManagedTest.cs - NUnit Test Cases for MD2 (RFC1319)
3 //
4 // Author:
5 // Sebastien Pouliot (sebastien@ximian.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 // (C) 2004 Novell (http://www.novell.com)
9 //
11 using System;
12 using System.Security.Cryptography;
14 using Mono.Security.Cryptography;
15 using NUnit.Framework;
17 namespace MonoTests.Mono.Security.Cryptography {
19 [TestFixture]
20 public class MD2ManagedTest : MD2Test {
22 [SetUp]
23 public void Setup ()
25 hash = new MD2Managed ();
28 // this will run ALL tests defined in MD2Test.cs with the MD2Managed implementation
30 [Test]
31 public override void Create ()
33 // try creating ourselve using Create
34 HashAlgorithm h = MD2.Create ("MD2Managed");
35 Assert ("MD2Managed", (h is MD2Managed));