Popularity
0.8
Declining
Activity
0.0
Stable
22
2
2

Programming language: Swift
License: MIT License
Tags: Testing     Other Testing    
Latest version: v0.8

XCTestExtensions alternatives and similar libraries

Based on the "Other Testing" category.
Alternatively, view XCTestExtensions alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of XCTestExtensions or a related project?

Add another 'Other Testing' Library

README

XCTestExtensions

Build Status

Features

  • [x] XCTAssertEventually (that convenient assertions for writing Unit Test).

    • Use "XCTAssertEventually", you can write asynchronous assertions very easily and intuitively, like Nimble's toEventually.
  • [x] XCTxContext (It is a wrapper of XCTContext.runActivity.)

    • XCTxContext can internally test setup and tearDown of TestClass. Of course you can not do it.

Installation

Installing with Carthage

Add to Cartfile.private

github "shindyu/XCTestExtensions"

Usage

Import XCTestExtensions to Unit tests files:

import XCTestExtensions

Use XCTestExtensions's extensions in your tests:

For example, Applying it to the asynchronous test of the official document of apple, it can be described as follows:

    func testDownloadWebData_UsingXCTAssertEventually() {
        XCTxContext("you can describe context") {
            let url = URL(string: "https://apple.com")!

            var downloadData: Data?

            let dataTask = URLSession.shared.dataTask(with: url) { (data, _, _) in
                downloadData = data
            }

            dataTask.resume()

            XCTAssertNotNilEventually(downloadData)
        }
    }

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/shindyu/XCTestExtensions

License

XCTestExtensions is available as open source under the terms of the MIT License.


*Note that all licence references and agreements mentioned in the XCTestExtensions README section above are relevant to that project's source code only.