00001 // 00002 // RMCallTests.h 00003 // WIRemoting 00004 // 00005 // Created by Yuxing Huang on 09-11-14. 00006 // Copyright 2009 Webinit Consulting. All rights reserved. 00007 // 00008 // See Also: http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone_development/135-Unit_Testing_Applications/unit_testing_applications.html 00009 00010 // Application unit tests contain unit test code that must be injected into an application to run correctly. 00011 // Define USE_APPLICATION_UNIT_TEST to 0 if the unit test code is designed to be linked into an independent test executable. 00012 00013 #define USE_APPLICATION_UNIT_TEST 0 00014 00015 #import <SenTestingKit/SenTestingKit.h> 00016 #import <UIKit/UIKit.h> 00017 //#import "application_headers" as required 00018 00019 @class RMCall; 00020 00021 @interface RMCallTests : SenTestCase { 00022 id protocol; 00023 RMCall *call; 00024 } 00025 00026 @end