LinuxMain.swift 877 B

12345678910111213141516171819202122232425262728293031
  1. @testable import CryptoSwiftTests
  2. import XCTest
  3. var tests = [
  4. testCase(DigestTests.allTests()),
  5. testCase(Poly1305Tests.allTests),
  6. testCase(HMACTests.allTests),
  7. testCase(CMACTests.allTests),
  8. testCase(AESTests.allTests()),
  9. testCase(BlowfishTests.allTests()),
  10. testCase(ChaCha20Tests.allTests()),
  11. testCase(RabbitTests.allTests()),
  12. testCase(ExtensionsTest.allTests()),
  13. testCase(PaddingTests.allTests),
  14. testCase(PBKDF.allTests()),
  15. testCase(RandomBytesSequenceTests.allTests),
  16. testCase(Access.allTests),
  17. ]
  18. #if !CI
  19. tests += [
  20. testCase(DigestTestsPerf.allTests()),
  21. testCase(AESTestsPerf.allTests()),
  22. testCase(ChaCha20TestsPerf.allTests()),
  23. testCase(RabbitTestsPerf.allTests()),
  24. testCase(ExtensionsTestPerf.allTests()),
  25. testCase(PBKDFPerf.allTests()),
  26. ]
  27. #endif
  28. XCTMain(tests)