diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 17:54:55 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 17:54:55 +0700 |
commit | 2e2901ceac1291fab8c2ed9828bceded00440a16 (patch) | |
tree | 6abcd413230e769ce4a925cb5724d6d4e53d82e7 /crypto/test/src/util | |
parent | Target framework v4.0 (diff) | |
download | BouncyCastle.NET-ed25519-2e2901ceac1291fab8c2ed9828bceded00440a16.tar.xz |
New build organization
- TargetFrameworks netstandard2.0;net40
Diffstat (limited to 'crypto/test/src/util')
-rw-r--r-- | crypto/test/src/util/test/SimpleTest.cs | 24 |
1 files changed, 5 insertions, 19 deletions
diff --git a/crypto/test/src/util/test/SimpleTest.cs b/crypto/test/src/util/test/SimpleTest.cs index fdb857fb8..8443cdf0f 100644 --- a/crypto/test/src/util/test/SimpleTest.cs +++ b/crypto/test/src/util/test/SimpleTest.cs @@ -172,28 +172,14 @@ namespace Org.BouncyCastle.Utilities.Test #endif } - private static string GetFullName( - string name) + private static string GetFullName(string name) { -#if SEPARATE_UNIT_TESTS - return "UnitTests.data." + name; -#elif PORTABLE - return "crypto.tests." + name; -#else - return "crypto.test.data." + name; -#endif - } + return "BouncyCastle.Crypto.Tests.data." + name; + } - private static string GetShortName( - string fullName) + private static string GetShortName(string fullName) { -#if SEPARATE_UNIT_TESTS - return fullName.Substring("UnitTests.data.".Length); -#elif PORTABLE - return fullName.Substring("crypto.tests.".Length); -#else - return fullName.Substring("crypto.test.data.".Length); -#endif + return fullName.Substring("BouncyCastle.Crypto.Tests.data.".Length); } private static string GetNewLine() |