Skip to content

Commit

Permalink
non-iOS platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Dec 28, 2023
1 parent 915ca5d commit 656abe8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions FirebaseAuth/Tests/Unit/ObjCGlobalTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ - (void)GlobalSymbolBuildTest {
s = FIRGitHubAuthSignInMethod;
s = FIRGoogleAuthProviderID;
s = FIRGoogleAuthSignInMethod;
#if TARGET_OS_IOS
s = FIRPhoneMultiFactorID;
s = FIRTOTPMultiFactorID;
s = FIRPhoneAuthProviderID;
s = FIRPhoneAuthSignInMethod;
#endif
s = FIRTwitterAuthProviderID;
s = FIRTwitterAuthSignInMethod;
}
Expand Down
10 changes: 6 additions & 4 deletions FirebaseAuth/Tests/Unit/SwiftGlobalTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ class SwiftGlobalTests: XCTestCase {
let _: String = GitHubAuthSignInMethod
let _: String = GoogleAuthProviderID
let _: String = GoogleAuthSignInMethod
let _: String = PhoneMultiFactorID
let _: String = TOTPMultiFactorID
let _: String = PhoneAuthProviderID
let _: String = PhoneAuthSignInMethod
#if os(iOS)
let _: String = PhoneMultiFactorID
let _: String = TOTPMultiFactorID
let _: String = PhoneAuthProviderID
let _: String = PhoneAuthSignInMethod
#endif
let _: String = TwitterAuthProviderID
let _: String = TwitterAuthSignInMethod
}
Expand Down

0 comments on commit 656abe8

Please sign in to comment.