/* * RCSMLoggerTest.m * RCSMac * * * Created by revenge on 2/3/11. * Copyright (C) HT srl 2011. All rights reserved * */ #import #import #import "RCSMLogger.h" #import "RCSMDebug.h" @interface RCSMLoggerTest : GHTestCase @end @implementation RCSMLoggerTest - (BOOL)shouldRunOnMainThread { // By default NO, but if you have a UI test or test dependent on running on the main thread return YES return NO; } - (void)setUpClass { // Run at start of all tests in the class } - (void)tearDownClass { // Run at end of all tests in the class } - (void)setUp { // Run before each test method } - (void)tearDown { // Run after each test method } #ifdef ENABLE_LOGGING - (void)testInfo { infoLog(@"Test for INFO level"); } - (void)testWarn { warnLog(@"Test for WARN level"); } - (void)testError { errorLog(@"Test for ERR level"); } #endif @end .