Why XCTest is not used for unit-tests? #49
Replies: 1 comment
-
great question! the corelibs (especially Foundation) have well-known issues with portability and binary size, so i try to minimize usage of them as much as possible. this matters more for the library targets than the test targets, but these days i have so much Foundation-less infrastructure built already, it makes a lot of sense to me to use it for the tests as well. the downside as you’ve discovered is this does not work well with the tests for this library are quite old so you might still see the occasional |
Beta Was this translation helpful? Give feedback.
-
Just curious, why XCTest is not used for unit-tests?
Beta Was this translation helpful? Give feedback.
All reactions