aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Example/Tests/GoogleTest
Commit message (Collapse)AuthorAge
* Use angle brackets for nonlocal #includes in Firestore (#580)Gravatar Gil2017-12-19
|
* Use NSPrincipalClass as the most reliable way to find tests. (#471)Gravatar Gil2017-11-17
| | | | | | | Unfortunately, using __attribute__((constructor)) doesn't really work because it races with all other constructors run pre-main. As a result it's possible for a test's constructor to run after registration. NSPrincipalClass gets instantiated only after all constructors have run.
* Use fully qualified imports in Firestore (#467)Gravatar Gil2017-11-16
| | | | | | | | | 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
* Run GoogleTest-based C++ tests in Xcode (#420)Gravatar Gil2017-11-08
* Use GoogleTest as a dependency of Firestore_Tests * Remove top-level leveldb-library from HEADER_SEARCH_PATHS * Add string_util_test to the project and get it to build * Implement FSTGoogleTestTests, a bridge between GoogleTest and XCTest