Change few Assertions to Asserts
[mono.git] / mcs / class / corlib / Test / System.Security.Cryptography / AsymmetricAlgorithmTest.cs
old mode 100755 (executable)
new mode 100644 (file)
index eed1fc5..fe90b31
@@ -1,40 +1,40 @@
-//\r
-// TestSuite.System.Security.Cryptography.AsymmetricAlgorithmTest.cs\r
-//\r
-// Author:\r
-//      Thomas Neidhart (tome@sbox.tugraz.at)\r
-//\r
-\r
-\r
-using System;\r
-using System.Security.Cryptography;\r
-\r
-using NUnit.Framework;\r
-\r
-namespace MonoTests.System.Security.Cryptography {\r
-\r
-       public class AsymmetricAlgorithmTest : TestCase {\r
-               private AsymmetricAlgorithm _algo;\r
-               protected override void SetUp() {\r
-                       _algo = AsymmetricAlgorithm.Create();\r
-               }\r
-\r
-               private void SetDefaultData() {\r
-               }\r
-               \r
-               public void TestProperties() {\r
-                       Assert("Properties (1)", _algo != null);\r
-                       \r
-                       bool thrown = false;\r
-                       try {\r
-                               KeySizes[] keys = _algo.LegalKeySizes;\r
-                               foreach (KeySizes myKey in keys) {\r
-                                       for (int i=myKey.MinSize; i<=myKey.MaxSize; i+=myKey.SkipSize) {\r
-                                               _algo.KeySize = i;\r
-                                       }\r
-                               }\r
-                       } catch (CryptographicException) {thrown=true;}\r
-                       Assert("Properties (2)", !thrown);                      \r
-               }\r
-       }\r
-}\r
+//
+// TestSuite.System.Security.Cryptography.AsymmetricAlgorithmTest.cs
+//
+// Author:
+//      Thomas Neidhart (tome@sbox.tugraz.at)
+//
+
+
+using System;
+using System.Security.Cryptography;
+
+using NUnit.Framework;
+
+namespace MonoTests.System.Security.Cryptography {
+       
+       [TestFixture]
+       public class AsymmetricAlgorithmTest
+       {
+               private AsymmetricAlgorithm _algo;
+               [SetUp]
+               public void SetUp() {
+                       _algo = AsymmetricAlgorithm.Create();
+               }
+
+               private void SetDefaultData() {
+               }
+               
+               [Test]
+               public void TestProperties() {
+                       Assert.IsNotNull(_algo, "Properties (1)");
+
+                       KeySizes[] keys = _algo.LegalKeySizes;
+                       foreach (KeySizes myKey in keys) {
+                               for (int i = myKey.MinSize; i <= myKey.MaxSize; i += myKey.SkipSize) {
+                                       _algo.KeySize = i;
+                               }
+                       }
+               }
+       }
+}