**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Security.Win32 / Test / Mono.Security.Cryptography / MD5CryptoServiceProviderTest.cs
blob212201364871050bc65183cba48b9528ff61f644
1 //
2 // MD5CryptoServiceProviderTest.cs - NUnit Test Cases for MD5 (RFC1321)
3 //
4 // Author:
5 // Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
10 using System;
11 using NUnit.Framework;
12 using Mono.Security.Cryptography;
14 namespace MonoTests.Security.Cryptography {
16 [TestFixture]
17 public class MD5CryptoServiceProviderTest : MD5Test {
19 [SetUp]
20 public void Setup () {
21 hash = new MD5CryptoServiceProvider ();
24 // this will run ALL tests defined in MD5Test.cs with the MD5CryptoServiceProvider implementation