소스 검색

Import without @testable to test public API.

Michael Ledin 9 년 전
부모
커밋
8d62769cf8
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Tests/CryptoSwiftTests/Access.swift

+ 2 - 1
Tests/CryptoSwiftTests/Access.swift

@@ -8,7 +8,8 @@
 
 import XCTest
 import Foundation
-@testable import CryptoSwift
+// import without @testable to test public API
+import CryptoSwift
 
 class Access: XCTestCase {
     let cipher = try! AES(key: "secret0key000000", iv: "0123456789012345")