File tree Expand file tree Collapse file tree
.swiftpm/xcode/package.xcworkspace/xcshareddata Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+ <plist version =" 1.0" >
4+ <dict >
5+ <key >IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key >
6+ <true />
7+ </dict >
8+ </plist >
Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ let package = Package(
1919 . target(
2020 name: " Dripper "
2121 ) ,
22+ . testTarget(
23+ name: " DripperTests " ,
24+ dependencies: [
25+ . target( name: " Dripper " ) ,
26+ ]
27+ ) ,
2228
2329 ] ,
2430 swiftLanguageModes: [ . v6]
Original file line number Diff line number Diff line change 1+ //
2+ // Test.swift
3+ // Dripper
4+ //
5+ // Created by 이창준 on 9/27/24.
6+ //
7+
8+ import Testing
9+
10+ @testable import Dripper
11+
12+ struct Test {
13+
14+ @Test
15+ func example( ) async throws {
16+ // Write your test here and use APIs like `#expect(...)` to check expected conditions.
17+ }
18+
19+ }
You can’t perform that action at this time.
0 commit comments