Skip to content
Snippets Groups Projects
Commit 64d4f3d9 authored by Charles Wright's avatar Charles Wright
Browse files

Renamed the Swift package to Cbsspeke because this is going to be the...

Renamed the Swift package to Cbsspeke because this is going to be the low-level interface to the C code.  We'll build another package to be the nice Swifty interface.
parent 60266f37
No related branches found
Tags v0.1.3
No related merge requests found
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Cbsspeke",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "Cbsspeke",
targets: ["Cbsspeke"]),
],
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
.target(
name: "Cbsspeke",
dependencies: []),
.testTarget(
name: "CbsspekeTests",
dependencies: ["Cbsspeke"]),
]
)
File moved
import XCTest
@testable import BSSpeke
final class CbsspekeTests: XCTestCase {
func testExample() throws {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(Cbsspeke().text, "Hello, World!")
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment