We have some constants inside our project. One is for the URL of a server. Is it possible to make the constant being different when in test mode?
Something like:
IF InTestMode() THEN
CONSTANT URL = "http://test.com"
ELSE
CONSTANT URL = "http://prod.com"
END
Thanks.