XCTestStarterKit

main

Lightweight Starter Utilities for Swift project testing with XCTest
CypherPoet/XCTestStarterKit

XCTestStarterKit

Banner Logo

Twitter: @cypher_poet

Lightweight starter utilities for Swift project testing with XCTest.

Installation

Xcode Projects

Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/CypherPoet/XCTestStarterKit.

Swift Package Manager Projects

You can add XCTestStarterKit as a package dependency in your Package.swift file:

let package = Package(
    //...
    dependencies: [
        .package(url: "https://github.com/CypherPoet/XCTestStarterKit", .exact("0.0.3")),
    ],
    //...
)

From there, refer to XCTestStarterKit as a "target dependency" in any of your package's targets that need it. (This will likely be a test target.)

targets: [
    .testTarget(
        name: "YourProjectTests",
        dependencies: [
            "YourProject",
            "XCTestStarterKit",
        ],
        path: "Tests/",
    ...
]

Then simply import XCTestStarterKit wherever you’d like to use it.

Contributing

Contributions to XCTestStarterKit are most welcome. Check out some of the issue templates for more info.

💻 Developing

Requirements

  • Xcode 12.5+ (Recommended)

📜 Generating Documentation

Documentation is generated by Jazzy. Installation instructions can be found here, and as soon as you have it set up, docs can be generated simply by running jazzy from the command line.

📝 Note that this will only generate the docs folder for you to view locally. This folder is being ignored by git, as an action exists to automatically generate docs at the root level and serve them on the project's gh-pages branch.

🏷 License

XCTestStarterKit is available under the MIT license. See the LICENSE file for more info.

Description

  • Swift Tools 5.4.0
View More Packages from this Author

Dependencies

  • None
Last updated: Tue Apr 02 2024 08:49:12 GMT-0900 (Hawaii-Aleutian Daylight Time)