Skip to content

Commit

Permalink
Added Test Target
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenTiigi committed Nov 29, 2022
1 parent fc35aa9 commit fe07dbd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ let package = Package(
.target(
name: "FlyoverKit",
path: "Sources"
),
.testTarget(
name: "FlyoverKitTests",
dependencies: [
"FlyoverKit"
],
path: "Tests"
)
]
)
4 changes: 4 additions & 0 deletions Tests/FlyoverTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import XCTest
@testable import FlyoverKit

final class FlyoverTests: XCTestCase {}

0 comments on commit fe07dbd

Please sign in to comment.