Вопрос

i have the following code in my unit tests:

#ifndef SERVER_TEST
    NSLog(@"\n\n!!!--- YOU ARE RUNNING TESTS IN STUB MODE ---!!!\n\n!!!--- Server Responses will be stubbed ---!!!\n\n");
#else
    NSLog(@"\n\n!!!--- YOU ARE RUNNING TESTS IN LIVE MODE ---!!!\n\n!!!--- Server Responses will be live ---!!!\n\n");
#endif

SERVER_TEST is defined under Build Settings in my Test target's User Defined Settings.

When I run my tests, #ifndef SERVER_TEST always returns True. Any ideas why?

Thanks?

Это было полезно?

Решение

You should keep this flag as Preprocessor macro instead of User Defined Settings.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top