/MapView/UnitTesting/RouteMeTests.h
C Header | 23 lines | 10 code | 4 blank | 9 comment | 0 complexity | 4a3110b57036b4039aa81b4572e19ee4 MD5 | raw file
1// 2// RouteMeTests.h 3// MapView 4// 5// Created by Hal Mueller on 4/6/09. 6// Copyright 2009 Route-Me Contributors. All rights reserved. 7// 8 9#import "GTMSenTestCase.h" 10#import "GTMUIKit+UnitTesting.h" 11#import <CoreLocation/CoreLocation.h> 12 13@class RMMapView; 14 15/// Unit tests go here. See http://developer.apple.com/tools/unittest.html 16///and http://code.google.com/p/google-toolbox-for-mac/wiki/iPhoneUnitTesting for guidance. 17@interface RouteMeTests : SenTestCase { 18 RMMapView *mapView; 19 UIView *contentView; 20 CLLocationCoordinate2D initialCenter; 21} 22 23@end