How would you design an XCTestCase
that needed valid credentials to pass (+fail) authentication-related testing?
The key is doing so without committing credentials in a repo for the world to sniff out.
For now, I have the following:
let uid="me"
let pwd="my password"
final class test: XCTestCase { code-block }
This works for me, for now ... how would you make the test less personal and more ready for public git repositories?