Skip to content

Commit

Permalink
Migrated unit tests to Swift Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Oct 29, 2024
1 parent b72afa0 commit 2c9e7bd
Show file tree
Hide file tree
Showing 29 changed files with 2,520 additions and 2,609 deletions.
10 changes: 7 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.9
// swift-tools-version: 6.0
// (be sure to update the .swift-version file when this Swift version changes)

import PackageDescription
Expand All @@ -18,7 +18,8 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/robbiehanson/CocoaAsyncSocket", from: "7.0.0"),
.package(url: "https://github.com/orchetect/SwiftASCII", from: "1.1.5")
.package(url: "https://github.com/orchetect/SwiftASCII", from: "1.1.5"),
.package(url: "https://github.com/apple/swift-numerics", from: "1.0.2")
],
targets: [
.target(
Expand All @@ -44,7 +45,10 @@ let package = Package(
),
.testTarget(
name: "OSCKitCoreTests",
dependencies: ["OSCKitCore"]
dependencies: [
"OSCKitCore",
.product(name: "Numerics", package: "swift-numerics")
]
)
]
)
Loading

0 comments on commit 2c9e7bd

Please sign in to comment.