Skip to content

Commit

Permalink
Rename the new TestKit module (#110).
Browse files Browse the repository at this point in the history
  • Loading branch information
oscbyspro committed Nov 7, 2024
1 parent e2fedf7 commit 36d7216
Show file tree
Hide file tree
Showing 174 changed files with 139 additions and 139 deletions.
20 changes: 10 additions & 10 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,71 +60,71 @@ let package = Package(
),
.testTarget(
name: "UltimathnumTests",
dependencies: ["Ultimathnum", "TestKit2"]
dependencies: ["Ultimathnum", "TestKit"]
),
.target(
name: "CoreKit",
dependencies: []
),
.testTarget(
name: "CoreKitTests",
dependencies: ["CoreKit", "TestKit2"]
dependencies: ["CoreKit", "TestKit"]
),
.target(
name: "DoubleIntKit",
dependencies: ["CoreKit"]
),
.testTarget(
name: "DoubleIntKitTests",
dependencies: ["DoubleIntKit", "TestKit2"]
dependencies: ["DoubleIntKit", "TestKit"]
),
.target(
name: "FibonacciKit",
dependencies: ["CoreKit"]
),
.testTarget(
name: "FibonacciKitTests",
dependencies: ["DoubleIntKit", "FibonacciKit", "InfiniIntKit", "TestKit2"]
dependencies: ["DoubleIntKit", "FibonacciKit", "InfiniIntKit", "TestKit"]
),
.target(
name: "InfiniIntKit",
dependencies: ["CoreKit"]
),
.testTarget(
name: "InfiniIntKitTests",
dependencies: ["InfiniIntKit", "TestKit2"]
dependencies: ["InfiniIntKit", "TestKit"]
),
.target(
name: "PrototypeKit",
dependencies: ["CoreKit"]
),
.testTarget(
name: "PrototypeKitTests",
dependencies: ["PrototypeKit", "TestKit2"]
dependencies: ["PrototypeKit", "TestKit"]
),
.target(
name: "RandomIntKit",
dependencies: ["CoreKit"]
),
.testTarget(
name: "RandomIntKitTests",
dependencies: ["RandomIntKit", "TestKit2"]
dependencies: ["RandomIntKit", "TestKit"]
),
.target(
name: "StdlibIntKit",
dependencies: ["CoreKit", "InfiniIntKit"]
),
.testTarget(
name: "StdlibIntKitTests",
dependencies: ["StdlibIntKit", "TestKit2"]
dependencies: ["StdlibIntKit", "TestKit"]
),
.target(
name: "TestKit2",
name: "TestKit",
dependencies: ["CoreKit", "RandomIntKit"]
),
.testTarget(
name: "Benchmarks",
dependencies: ["Ultimathnum", "TestKit2"]
dependencies: ["Ultimathnum", "TestKit"]
),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Tests/Benchmarks/BinaryInteger+Comparison.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import CoreKit
import DoubleIntKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Binary Integer x Comparison
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/BinaryInteger+Exponentiation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import CoreKit
import DoubleIntKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Binary Integer x Exponentiation
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/BinaryInteger+Factorial.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import CoreKit
import DoubleIntKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Binary Integer x Factorial
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/BinaryInteger+Geometry.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import CoreKit
import DoubleIntKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Binary Integer x Geometry
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/BinaryInteger+Stride.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import CoreKit
import DoubleIntKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Binary Integer x Stride
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/DoubleInt.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import DoubleIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Double Int
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/Fibonacci.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import CoreKit
import DoubleIntKit
import FibonacciKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fibonacci
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/Randomness.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import CoreKit
import DoubleIntKit
import InfiniIntKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Randomness
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/TextInt+Base10.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import CoreKit
import DoubleIntKit
import FibonacciKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Text Int x Radix 10
Expand Down
2 changes: 1 addition & 1 deletion Tests/Benchmarks/TextInt+Base16.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import CoreKit
import DoubleIntKit
import FibonacciKit
import InfiniIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Text Int x Radix 16
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Bit+Bitwise.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Bit x Bitwise
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Bit+Comparison.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Bit x Comparison
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Bit+Text.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Bit x Text
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Bit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Bit
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Addition.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Addition
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Comparison.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Comparison
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Count.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Count
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Division.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Division
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Elements.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Elements
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Metadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Metadata
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Multiplication.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Multiplication
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Partition.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Partition
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Reinterpretation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Reinterpretation
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/DataInteger+Shift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Data Integer x Shift
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Division+Rounding.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Division x Rounding
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Division+Validation.swift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Division x Validation
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Division.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Division
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Fallible+Comparison.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fallible x Comparison
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Fallible+Sink.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fallible x Sink
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Fallible+Text.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fallible x Text
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Fallible+Validation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fallible x Validation
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Fallible+Veto.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import CoreKit
import RandomIntKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fallible x Veto
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/Fallible.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Fallible
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/LiteralInt+Comparison.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Literal Int x Comparison
Expand Down
2 changes: 1 addition & 1 deletion Tests/CoreKitTests/LiteralInt+Count.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//=----------------------------------------------------------------------------=

import CoreKit
import TestKit2
import TestKit

//*============================================================================*
// MARK: * Literal Int x Count
Expand Down
Loading

0 comments on commit 36d7216

Please sign in to comment.