Skip to content

Development Notes

HongHao Zhang edited this page May 28, 2024 · 3 revisions

Define Swift Compiler Flag

When need to conditionally import XCTest, like:

#if TEST
import XCTest

...
#endif

Can use Swift compiler flags like:

swift test -Xswiftc -DTEST

Clone this wiki locally