PageRenderTime 48ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/MapView/UnitTesting/RouteMeTests.h

http://github.com/route-me/route-me
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. #import "GTMSenTestCase.h"
  9. #import "GTMUIKit+UnitTesting.h"
  10. #import <CoreLocation/CoreLocation.h>
  11. @class RMMapView;
  12. /// Unit tests go here. See http://developer.apple.com/tools/unittest.html
  13. ///and http://code.google.com/p/google-toolbox-for-mac/wiki/iPhoneUnitTesting for guidance.
  14. @interface RouteMeTests : SenTestCase {
  15. RMMapView *mapView;
  16. UIView *contentView;
  17. CLLocationCoordinate2D initialCenter;
  18. }
  19. @end