00001 // 00002 // MoodleTests.h 00003 // WIRemoting 00004 // 00005 // Created by Felix Huang on 09-12-08. 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 #import <SenTestingKit/SenTestingKit.h> 00014 #import <UIKit/UIKit.h> 00015 //#import "application_headers" as required 00016 00017 @class Moodle; 00018 00019 @interface MoodleTests : SenTestCase { 00020 Moodle *moodle; 00021 } 00022 00023 @end