FIRAppDistributionTests.m 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright 2020 Google
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <Foundation/Foundation.h>
  15. #import <XCTest/XCTest.h>
  16. #import "FirebaseAppDistribution/FIRAppDistribution.h"
  17. #import "FirebaseCore/Sources/Private/FirebaseCoreInternal.h"
  18. @interface FIRAppDistributionSampleTests : XCTestCase
  19. @property(nonatomic, strong) FIRAppDistribution *appDistribution;
  20. @end
  21. @interface FIRAppDistribution (PrivateUnitTesting)
  22. - (instancetype)initWithApp:(FIRApp *)app appInfo:(NSDictionary *)appInfo;
  23. @end
  24. @implementation FIRAppDistributionSampleTests
  25. - (void)setUp {
  26. [super setUp];
  27. NSDictionary<NSString *, NSString *> *dict = [[NSDictionary<NSString *, NSString *> alloc] init];
  28. self.appDistribution = [[FIRAppDistribution alloc] initWithApp:nil appInfo:dict];
  29. }
  30. - (void)testGetSingleton {
  31. XCTAssertNotNil(self.appDistribution);
  32. }
  33. @end