LinuxMain.swift 513 B

1234567891011121314151617
  1. import XCTest
  2. @testable import CryptoSwiftTests
  3. XCTMain([
  4. testCase(DigestTests.allTests()),
  5. testCase(Poly1305Tests.allTests),
  6. testCase(HMACTests.allTests),
  7. testCase(AESTests.allTests()),
  8. testCase(BlowfishTests.allTests()),
  9. testCase(ChaCha20Tests.allTests()),
  10. testCase(RabbitTests.allTests()),
  11. testCase(ExtensionsTest.allTests()),
  12. testCase(PaddingTests.allTests),
  13. testCase(PBKDF.allTests),
  14. testCase(RandomBytesSequenceTests.allTests),
  15. testCase(Access.allTests),
  16. ])