123456789101112131415 |
- import XCTest
- @testable import CryptoSwiftTests
- XCTMain([
- testCase(HashTests.allTests),
- testCase(Poly1305Tests.allTests),
- testCase(HMACTests.allTests),
- testCase(AESTests.allTests),
- testCase(ChaCha20Tests.allTests),
- testCase(RabbitTests.allTests),
- testCase(ExtensionsTest.allTests),
- testCase(PaddingTests.allTests),
- testCase(PBKDF.allTests),
- testCase(Access.allTests)
- ])
|