Skip to content

Move all unit tests to the Tests/Unit folder #2234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GoogleDataLogger.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Shared library for iOS SDK data logging needs.
}

# Test specs
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'GoogleDataLogger/Tests/**/*.{h,m}'
s.test_spec 'UnitTests' do |test_spec|
test_spec.source_files = 'GoogleDataLogger/Tests/Unit/**/*.{h,m}'
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ @interface GDLLogStorageTest : GDLTestCase
/** The test prioritizer implementation. */
@property(nullable, nonatomic) GDLTestPrioritizer *testPrioritizer;

/** The uploader fake. */
@property(nonatomic) GDLUploaderFake *uploaderFake;

@end
Expand Down