Is is possible to use `XCTest` from K/N?
# kotlin-native
t
Is is possible to use
XCTest
from K/N?
v
No, because XCTest's asserts require
__FILE__
and
__LINE__
macros which are not yet supported in Kotlin/Native.
t
Thanks! Actually I need expectations for async testing, probably I should fallback to native ios tests for this.