Skip to content
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.

Commit

Permalink
Make more base test class abstract to prevent NUnit from running them.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bassam Tabbara committed Sep 25, 2013
1 parent bdec80a commit f297591
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/HashAlgorithmTest.cs
Expand Up @@ -36,7 +36,7 @@

namespace Crimson.Test.Base {

public class HashAlgorithmTest {
public abstract class HashAlgorithmTest {

protected HashAlgorithm hash;

Expand Down
2 changes: 1 addition & 1 deletion tests/SHA1Test.cs
Expand Up @@ -21,7 +21,7 @@ namespace Crimson.Test.Base {
// a. FIPS PUB 180-1: Secure Hash Standard
// http://csrc.nist.gov/publications/fips/fips180-1/fip180-1.txt

public class SHA1Test : HashAlgorithmTest {
public abstract class SHA1Test : HashAlgorithmTest {

// test vectors from NIST FIPS 186-2

Expand Down
2 changes: 1 addition & 1 deletion tests/SHA256Test.cs
Expand Up @@ -21,7 +21,7 @@ namespace Crimson.Test.Base {
// a. FIPS PUB 180-2: Secure Hash Standard
// http://csrc.nist.gov/publications/fips/fips180-2/fip180-2.txt

public class SHA256Test : HashAlgorithmTest {
public abstract class SHA256Test : HashAlgorithmTest {

// test vectors from NIST FIPS 186-2

Expand Down
2 changes: 1 addition & 1 deletion tests/SymmetricAlgorithmTest.cs
Expand Up @@ -5,7 +5,7 @@

namespace Crimson.Test.Base {

public class SymmetricAlgorithmTest {
public abstract class SymmetricAlgorithmTest {

protected SymmetricAlgorithm algo;

Expand Down

0 comments on commit f297591

Please sign in to comment.