I am investigating how to use XCTest to close our automation test gap. From the developer document, I only see something like this:
xcodebuild test -project MyAppProject.xcodeproj -scheme MyApp
I would like to know if there is a way to run XCTest(UI test) against an archived build (.ipa)? or Can we just seperate the build and test so that we can build first and test against that build later?
Thanks