Skip to content
Snippets Groups Projects
Commit 3abcea48 authored by Thomas Evensen's avatar Thomas Evensen
Browse files

Initial Commit

parents
Branches
No related tags found
No related merge requests found
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "SSHCreateKey",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "SSHCreateKey",
targets: ["SSHCreateKey"]),
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "SSHCreateKey"),
.testTarget(
name: "SSHCreateKeyTests",
dependencies: ["SSHCreateKey"]
),
]
)
// The Swift Programming Language
// https://docs.swift.org/swift-book
import Testing
@testable import SSHCreateKey
@Test func example() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment