can I use xctest with swift testing

Generated on 1/20/2025

1 search

Yes, you can use XCTest with Swift testing. Swift testing is a modern testing framework that can coexist with XCTest in the same project. This allows you to incrementally migrate your tests from XCTest to Swift testing if desired. Swift testing provides a different approach to writing tests, using macros like expect and require instead of the many assertion functions provided by XCTest. It also supports traits for specifying information per test or suite and takes advantage of Swift concurrency for parallelization.

For more details on how Swift testing and XCTest relate to each other, you can refer to the session Meet Swift Testing (17:35).