aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party/Immutable/Tests
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2017-11-16 20:52:01 -0800
committerGravatar GitHub <noreply@github.com>2017-11-16 20:52:01 -0800
commit4fbc96904fe86b3a0cdb91bfa6d96491221eb6b9 (patch)
treeb1737ee79405b7c80c2a03f6598c3ba71df2d05f /Firestore/third_party/Immutable/Tests
parent88b7e74e3102fc8de453f22a44fd5cb4c91472e3 (diff)
Use fully qualified imports in Firestore (#467)
This simplifies the import process back into google3 and allows us to add additional directories to the project without needing to update the project files for each directory we add. This shows up most clearly in the change to Firestore/Example/Firestore.xcodeproj/project.pbxproj: this no longer needs to list essentially every directory in the project as a header search path. * Clang-format configuration for C++ files * Add support C++-only sources to the podspec * Podspec support for fully qualified imports * xcodeproj changes for fully-qualified imports * Use fully-qualified imports in Firestore sources
Diffstat (limited to 'Firestore/third_party/Immutable/Tests')
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m4
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h2
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.m2
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.h2
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.m2
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTLLRBValueNode+Test.h2
-rw-r--r--Firestore/third_party/Immutable/Tests/FSTTreeSortedDictionaryTests.m12
7 files changed, 13 insertions, 13 deletions
diff --git a/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m b/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
index 68f2fc3..a799686 100644
--- a/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
+++ b/Firestore/third_party/Immutable/Tests/FSTArraySortedDictionaryTests.m
@@ -1,8 +1,8 @@
-#import "Immutable/FSTArraySortedDictionary.h"
+#import "Firestore/third_party/Immutable/FSTArraySortedDictionary.h"
#import <XCTest/XCTest.h>
-#import "Util/FSTAssert.h"
+#import "Firestore/Source/Util/FSTAssert.h"
@interface FSTArraySortedDictionary (Test)
// Override methods to return subtype.
diff --git a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h
index 7496173..85e0197 100644
--- a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h
+++ b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h
@@ -1,6 +1,6 @@
#import <Foundation/Foundation.h>
-#import "Immutable/FSTImmutableSortedDictionary.h"
+#import "Firestore/third_party/Immutable/FSTImmutableSortedDictionary.h"
NS_ASSUME_NONNULL_BEGIN
diff --git a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.m b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.m
index d402916..7def7cb 100644
--- a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.m
+++ b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.m
@@ -1,4 +1,4 @@
-#import "FSTImmutableSortedDictionary+Testing.h"
+#import "Firestore/third_party/Immutable/Tests/FSTImmutableSortedDictionary+Testing.h"
NS_ASSUME_NONNULL_BEGIN
diff --git a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.h b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.h
index a0e25d7..0eb82cf 100644
--- a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.h
+++ b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.h
@@ -1,4 +1,4 @@
-#import "Immutable/FSTImmutableSortedSet.h"
+#import "Firestore/third_party/Immutable/FSTImmutableSortedSet.h"
NS_ASSUME_NONNULL_BEGIN
diff --git a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.m b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.m
index d4d81e0..25ba56e 100644
--- a/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.m
+++ b/Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.m
@@ -1,4 +1,4 @@
-#import "FSTImmutableSortedSet+Testing.h"
+#import "Firestore/third_party/Immutable/Tests/FSTImmutableSortedSet+Testing.h"
NS_ASSUME_NONNULL_BEGIN
diff --git a/Firestore/third_party/Immutable/Tests/FSTLLRBValueNode+Test.h b/Firestore/third_party/Immutable/Tests/FSTLLRBValueNode+Test.h
index 3b05647..768521a 100644
--- a/Firestore/third_party/Immutable/Tests/FSTLLRBValueNode+Test.h
+++ b/Firestore/third_party/Immutable/Tests/FSTLLRBValueNode+Test.h
@@ -1,4 +1,4 @@
-#import "Immutable/FSTLLRBValueNode.h"
+#import "Firestore/third_party/Immutable/FSTLLRBValueNode.h"
#import <Foundation/Foundation.h>
diff --git a/Firestore/third_party/Immutable/Tests/FSTTreeSortedDictionaryTests.m b/Firestore/third_party/Immutable/Tests/FSTTreeSortedDictionaryTests.m
index 352ac4e..344efba 100644
--- a/Firestore/third_party/Immutable/Tests/FSTTreeSortedDictionaryTests.m
+++ b/Firestore/third_party/Immutable/Tests/FSTTreeSortedDictionaryTests.m
@@ -1,12 +1,12 @@
#import <XCTest/XCTest.h>
-#import "Immutable/FSTLLRBEmptyNode.h"
-#import "Immutable/FSTLLRBNode.h"
-#import "Immutable/FSTLLRBValueNode.h"
-#import "Immutable/FSTTreeSortedDictionary.h"
-#import "Util/FSTAssert.h"
+#import "Firestore/third_party/Immutable/FSTLLRBEmptyNode.h"
+#import "Firestore/third_party/Immutable/FSTLLRBNode.h"
+#import "Firestore/third_party/Immutable/FSTLLRBValueNode.h"
+#import "Firestore/third_party/Immutable/FSTTreeSortedDictionary.h"
+#import "Firestore/Source/Util/FSTAssert.h"
-#import "FSTLLRBValueNode+Test.h"
+#import "Firestore/third_party/Immutable/Tests/FSTLLRBValueNode+Test.h"
@interface FSTTreeSortedDictionary (Test)
// Override methods to return subtype.