LinuxMain.swift 411 B

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