FIRTestCase.m 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Copyright 2017 Google
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import "FIRTestCase.h"
  15. NSString *const kAPIKey = @"correct_api_key";
  16. NSString *const kCustomizedAPIKey = @"customized_api_key";
  17. NSString *const kClientID = @"correct_client_id";
  18. NSString *const kTrackingID = @"correct_tracking_id";
  19. NSString *const kGCMSenderID = @"correct_gcm_sender_id";
  20. NSString *const kAndroidClientID = @"correct_android_client_id";
  21. NSString *const kGoogleAppID = @"1:123:ios:123abc";
  22. NSString *const kDatabaseURL = @"https://abc-xyz-123.firebaseio.com";
  23. NSString *const kStorageBucket = @"project-id-123.storage.firebase.com";
  24. NSString *const kDeepLinkURLScheme = @"comgoogledeeplinkurl";
  25. NSString *const kNewDeepLinkURLScheme = @"newdeeplinkurlfortest";
  26. NSString *const kBundleID = @"com.google.FirebaseSDKTests";
  27. NSString *const kProjectID = @"abc-xyz-123";
  28. @interface FIRTestCase ()
  29. @end
  30. @implementation FIRTestCase
  31. - (void)setUp {
  32. [super setUp];
  33. }
  34. - (void)tearDown {
  35. [super tearDown];
  36. }
  37. @end