Skip to content

Commit 30104c5

Browse files
Merge pull request #59 from klassen-software-solutions/development/v5
Development/v5
2 parents 6078020 + de4646d commit 30104c5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Sources/KSSFoundation/Wrapper.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,9 @@ import Foundation
1212
a struct, to outlive its scope.
1313
*/
1414
public class Wrapper<Struct> {
15+
public init(object: Struct? = nil) {
16+
self.object = object
17+
}
18+
1519
public var object: Struct? = nil
1620
}

Tests/KSSFoundationTests/WrapperTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation
99
import KSSTest
1010
import XCTest
1111

12-
@testable import KSSFoundation
12+
import KSSFoundation
1313

1414

1515
final class WrapperTests: XCTestCase {

0 commit comments

Comments
 (0)