00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #define USE_APPLICATION_UNIT_TEST 1
00014
00015 #import <SenTestingKit/SenTestingKit.h>
00016 #import <UIKit/UIKit.h>
00017
00018
00019 @class RMCall, RMSession, MockProtocol, RMResultDelegateWrapper;
00020 @protocol RMAuthenticator, RMCallProtocol, RMResultDelegate;
00021
00022 @interface RMSessionTests : SenTestCase<RMAuthenticator, RMCallProtocol, RMResultDelegate> {
00023 RMCall *call;
00024 RMSession *session;
00025 MockProtocol *protocol;
00026 NSString *username;
00027 NSString *password;
00028 RMResultDelegateWrapper *wrapper;
00029 }
00030
00031 @end