A question for general improvements of the code. I have an enum with configurations for the app:
enum Configuration
{
static let useTestServer = true
*etc*
}
How can I check that useTestServer == false
every time I archive the app for the app store? Cause there is always possibility to forget turning test server off while publishing.