Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8930bc8

Browse files
committedDec 4, 2023
Package init
0 parents  commit 8930bc8

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed
 

‎.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
xcuserdata/
5+
DerivedData/
6+
.swiftpm/configuration/registries.json
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
8+
.netrc

‎Package.swift

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// swift-tools-version: 5.6
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "CanonicalPackageURLs",
7+
products: [
8+
.library(
9+
name: "CanonicalPackageURLs",
10+
targets: ["CanonicalPackageURLs"]),
11+
],
12+
targets: [
13+
.target(
14+
name: "CanonicalPackageURLs"),
15+
.testTarget(
16+
name: "CanonicalPackageURLsTests",
17+
dependencies: ["CanonicalPackageURLs"]),
18+
]
19+
)
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// The Swift Programming Language
2+
// https://docs.swift.org/swift-book
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import XCTest
2+
@testable import CanonicalPackageURLs
3+
4+
final class CanonicalPackageURLsTests: XCTestCase {
5+
func testExample() throws {
6+
// XCTest Documentation
7+
// https://developer.apple.com/documentation/xctest
8+
9+
// Defining Test Cases and Test Methods
10+
// https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
11+
}
12+
}

0 commit comments

Comments
 (0)
Please sign in to comment.