12345678910111213141516171819202122232425262728293031323334 |
- @testable import Tests
- @testable import TestsPerformance
- import XCTest
- var tests = [
- testCase(DigestTests.allTests()),
- testCase(Poly1305Tests.allTests),
- testCase(HMACTests.allTests),
- testCase(CMACTests.allTests),
- testCase(AESTests.allTests()),
- testCase(BlowfishTests.allTests()),
- testCase(ChaCha20Tests.allTests()),
- testCase(RabbitTests.allTests()),
- testCase(ExtensionsTest.allTests()),
- testCase(PaddingTests.allTests),
- testCase(PBKDF.allTests()),
- testCase(RandomBytesSequenceTests.allTests),
- testCase(Access.allTests),
- testCase(Scrypt.allTests)
- ]
- #if !CI
- tests += [
- testCase(DigestTestsPerf.allTests()),
- testCase(AESTestsPerf.allTests()),
- testCase(ChaCha20TestsPerf.allTests()),
- testCase(RabbitTestsPerf.allTests()),
- testCase(ExtensionsTestPerf.allTests()),
- testCase(PBKDFPerf.allTests()),
- testCase(ScryptTestsPerf.allTests())
- ]
- #endif
- XCTMain(tests)
|