aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2017-12-04 08:52:11 -0800
committerGravatar GitHub <noreply@github.com>2017-12-04 08:52:11 -0800
commited3e4982f9f0194851509603e5e649e5152ba897 (patch)
tree54ebe2c13463ed0c45d3fc55f654ee6c41cf8589 /Example
parent9c08142051f522c6214337470b870919c30a6192 (diff)
Standardize cross module imports with angle bracket syntax (#526)
Qualify all cross-pod imports of FirebaseCore headers
Diffstat (limited to 'Example')
-rw-r--r--Example/Analytics_Tests_iOS/Analytics_Tests_iOS.m12
-rw-r--r--Example/Auth/ApiTests/FirebaseAuthApiTests.m2
-rw-r--r--Example/Auth/EarlGreyTests/FirebaseAuthEarlGreyTests.m2
-rw-r--r--Example/Auth/Sample/AppManager.m2
-rw-r--r--Example/Auth/Sample/GoogleAuthProvider.m4
-rw-r--r--Example/Auth/Sample/SettingsViewController.m4
-rw-r--r--Example/Auth/Tests/FIRPhoneAuthProviderTests.m4
-rw-r--r--Example/Database/Tests/Helpers/FTestHelpers.m4
-rw-r--r--Example/Database/Tests/Integration/FData.m4
-rw-r--r--Example/Database/Tests/Integration/FIRDatabaseTests.m2
-rw-r--r--Example/Storage/Tests/Integration/FIRStorageIntegrationTests.m4
-rw-r--r--Example/Storage/Tests/Unit/FIRStorageTestHelpers.h4
12 files changed, 25 insertions, 23 deletions
diff --git a/Example/Analytics_Tests_iOS/Analytics_Tests_iOS.m b/Example/Analytics_Tests_iOS/Analytics_Tests_iOS.m
index 2f7801b..a020433 100644
--- a/Example/Analytics_Tests_iOS/Analytics_Tests_iOS.m
+++ b/Example/Analytics_Tests_iOS/Analytics_Tests_iOS.m
@@ -21,17 +21,19 @@
@implementation Analytics_Tests_iOS
- (void)setUp {
- [super setUp];
- // Put setup code here. This method is called before the invocation of each test method in the class.
+ [super setUp];
+ // Put setup code here. This method is called before the invocation of each test method in the
+ // class.
}
- (void)tearDown {
- // Put teardown code here. This method is called after the invocation of each test method in the class.
- [super tearDown];
+ // Put teardown code here. This method is called after the invocation of each test method in the
+ // class.
+ [super tearDown];
}
- (void)testExample {
- // Replace with a real test if we ever want to do Analytics unit tests here.
+ // Replace with a real test if we ever want to do Analytics unit tests here.
}
@end
diff --git a/Example/Auth/ApiTests/FirebaseAuthApiTests.m b/Example/Auth/ApiTests/FirebaseAuthApiTests.m
index 7aa0b73..454d9dd 100644
--- a/Example/Auth/ApiTests/FirebaseAuthApiTests.m
+++ b/Example/Auth/ApiTests/FirebaseAuthApiTests.m
@@ -17,7 +17,7 @@
#import <Foundation/Foundation.h>
#import <XCTest/XCTest.h>
-#import "FIRApp.h"
+#import <FirebaseCore/FIRApp.h>
#import "FirebaseAuth.h"
#import "AuthCredentials.h"
diff --git a/Example/Auth/EarlGreyTests/FirebaseAuthEarlGreyTests.m b/Example/Auth/EarlGreyTests/FirebaseAuthEarlGreyTests.m
index 7f07e2a..c5b1cc6 100644
--- a/Example/Auth/EarlGreyTests/FirebaseAuthEarlGreyTests.m
+++ b/Example/Auth/EarlGreyTests/FirebaseAuthEarlGreyTests.m
@@ -18,7 +18,7 @@
#import <Foundation/Foundation.h>
#import <XCTest/XCTest.h>
-#import "FIRApp.h"
+#import <FirebaseCore/FIRApp.h>
#import "FirebaseAuth.h"
#ifdef NO_NETWORK
diff --git a/Example/Auth/Sample/AppManager.m b/Example/Auth/Sample/AppManager.m
index 757642e..9c502ea 100644
--- a/Example/Auth/Sample/AppManager.m
+++ b/Example/Auth/Sample/AppManager.m
@@ -16,7 +16,7 @@
#import "AppManager.h"
-#import "FIRApp.h"
+#import <FirebaseCore/FIRApp.h>
#import "FIRPhoneAuthProvider.h"
#import "FirebaseAuth.h"
diff --git a/Example/Auth/Sample/GoogleAuthProvider.m b/Example/Auth/Sample/GoogleAuthProvider.m
index e63ade0..674db55 100644
--- a/Example/Auth/Sample/GoogleAuthProvider.m
+++ b/Example/Auth/Sample/GoogleAuthProvider.m
@@ -19,8 +19,8 @@
#import <GoogleSignIn/GoogleSignIn.h>
#import "AppManager.h"
-#import "FIRApp.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIRApp.h>
+#import <FirebaseCore/FIROptions.h>
#import "FIRGoogleAuthProvider.h"
#import "ApplicationDelegate.h"
diff --git a/Example/Auth/Sample/SettingsViewController.m b/Example/Auth/Sample/SettingsViewController.m
index 1af4642..de91806 100644
--- a/Example/Auth/Sample/SettingsViewController.m
+++ b/Example/Auth/Sample/SettingsViewController.m
@@ -19,13 +19,13 @@
#import <objc/runtime.h>
#import "AppManager.h"
-#import "FIRApp.h"
+#import <FirebaseCore/FIRApp.h>
#import "FIRAuth_Internal.h"
#import "FIRAuthAPNSToken.h"
#import "FIRAuthAPNSTokenManager.h"
#import "FIRAuthAppCredential.h"
#import "FIRAuthAppCredentialManager.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIROptions.h>
#import "FirebaseAuth.h"
#import "StaticContentTableViewManager.h"
#import "UIViewController+Alerts.h"
diff --git a/Example/Auth/Tests/FIRPhoneAuthProviderTests.m b/Example/Auth/Tests/FIRPhoneAuthProviderTests.m
index 67e2d01..c5f4ec7 100644
--- a/Example/Auth/Tests/FIRPhoneAuthProviderTests.m
+++ b/Example/Auth/Tests/FIRPhoneAuthProviderTests.m
@@ -20,7 +20,7 @@
#import "FIRAuth.h"
#import "FIRPhoneAuthProvider.h"
-#import "FIRApp.h"
+#import <FirebaseCore/FIRApp.h>
#import "FIRAuth_Internal.h"
#import "FIRAuthAPNSToken.h"
#import "FIRAuthAPNSTokenManager.h"
@@ -38,7 +38,7 @@
#import "FIRGetProjectConfigResponse.h"
#import "FIRSendVerificationCodeRequest.h"
#import "FIRSendVerificationCodeResponse.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIROptions.h>
#import "FIRVerifyClientRequest.h"
#import "FIRVerifyClientResponse.h"
#import "OCMStubRecorder+FIRAuthUnitTests.h"
diff --git a/Example/Database/Tests/Helpers/FTestHelpers.m b/Example/Database/Tests/Helpers/FTestHelpers.m
index bfbb9e1..35f85f0 100644
--- a/Example/Database/Tests/Helpers/FTestHelpers.m
+++ b/Example/Database/Tests/Helpers/FTestHelpers.m
@@ -16,8 +16,8 @@
#import "FTestHelpers.h"
#import "FConstants.h"
-#import "FIRApp.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIRApp.h>
+#import <FirebaseCore/FIROptions.h>
#import "FIRDatabaseConfig_Private.h"
#import "FTestAuthTokenGenerator.h"
diff --git a/Example/Database/Tests/Integration/FData.m b/Example/Database/Tests/Integration/FData.m
index 08b0586..aef15e1 100644
--- a/Example/Database/Tests/Integration/FData.m
+++ b/Example/Database/Tests/Integration/FData.m
@@ -18,10 +18,10 @@
#import "FTestHelpers.h"
#import "FEventTester.h"
#import "FTupleEventTypeString.h"
-#import "FIRApp.h"
+#import <FirebaseCore/FIRApp.h>
#import "FIRDatabaseQuery_Private.h"
#import "FIRDatabaseConfig_Private.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIROptions.h>
#import "FRepo_Private.h"
#import <limits.h>
diff --git a/Example/Database/Tests/Integration/FIRDatabaseTests.m b/Example/Database/Tests/Integration/FIRDatabaseTests.m
index 8dcc773..8a98824 100644
--- a/Example/Database/Tests/Integration/FIRDatabaseTests.m
+++ b/Example/Database/Tests/Integration/FIRDatabaseTests.m
@@ -22,7 +22,7 @@
#import "FIRDatabaseReference_Private.h"
#import "FIRDatabase.h"
#import "FIRDatabaseConfig_Private.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIROptions.h>
#import "FTestHelpers.h"
#import "FMockStorageEngine.h"
#import "FTestBase.h"
diff --git a/Example/Storage/Tests/Integration/FIRStorageIntegrationTests.m b/Example/Storage/Tests/Integration/FIRStorageIntegrationTests.m
index f2be912..703c2c6 100644
--- a/Example/Storage/Tests/Integration/FIRStorageIntegrationTests.m
+++ b/Example/Storage/Tests/Integration/FIRStorageIntegrationTests.m
@@ -18,8 +18,8 @@
#import "FirebaseStorage.h"
-#import "FIRApp.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIRApp.h>
+#import <FirebaseCore/FIROptions.h>
NSTimeInterval kFIRStorageIntegrationTestTimeout = 30;
diff --git a/Example/Storage/Tests/Unit/FIRStorageTestHelpers.h b/Example/Storage/Tests/Unit/FIRStorageTestHelpers.h
index 3069228..9723443 100644
--- a/Example/Storage/Tests/Unit/FIRStorageTestHelpers.h
+++ b/Example/Storage/Tests/Unit/FIRStorageTestHelpers.h
@@ -18,8 +18,8 @@
#import <OCMock/OCMock.h>
#import <XCTest/XCTest.h>
-#import "FIRApp.h"
-#import "FIROptions.h"
+#import <FirebaseCore/FIRApp.h>
+#import <FirebaseCore/FIROptions.h>
#import "FIRStorageConstants.h"
#import "FIRStorageConstants_Private.h"