LinuxMain.swift 900 B

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