FIRTestCase.m 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 kGoogleAppID = @"1:123:ios:123abc";
  21. NSString *const kDatabaseURL = @"https://abc-xyz-123.firebaseio.com";
  22. NSString *const kStorageBucket = @"project-id-123.storage.firebase.com";
  23. NSString *const kDeepLinkURLScheme = @"comgoogledeeplinkurl";
  24. NSString *const kNewDeepLinkURLScheme = @"newdeeplinkurlfortest";
  25. NSString *const kBundleID = @"com.google.FirebaseSDKTests";
  26. NSString *const kProjectID = @"abc-xyz-123";
  27. @interface FIRTestCase ()
  28. @end
  29. @implementation FIRTestCase
  30. - (void)setUp {
  31. [super setUp];
  32. }
  33. - (void)tearDown {
  34. [super tearDown];
  35. }
  36. @end