This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / corlib / Test / System.Security.Cryptography / RIPEMD160ManagedTest.cs
1 //
2 // RIPEMD160ManagedTest.cs - NUnit Test Cases for RIPEMD160
3 //      http://www.esat.kuleuven.ac.be/~bosselae/ripemd160.html
4 //
5 // Author:
6 //      Sebastien Pouliot (spouliot@motus.com)
7 //
8 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
9 //
10
11 #if NET_2_0
12
13 using System;
14 using NUnit.Framework;
15 using System.Security.Cryptography;
16
17 namespace MonoTests.System.Security.Cryptography {
18
19         [TestFixture]
20         public class RIPEMD160ManagedTest : RIPEMD160Test {
21
22                 [SetUp]
23                 public void SetUp () 
24                 {
25                         hash = new RIPEMD160Managed ();
26                 }
27
28                 // this will run ALL tests defined in RIPEMD160Test.cs with the RIPEMD160Managed implementation
29         }
30 }
31
32 #endif