FIRAppDistributionTests.m 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 "FIRAppDistribution.h"
  17. #import <FirebaseCore/FIRAppInternal.h>
  18. @interface FIRAppDistributionSampleTests : XCTestCase
  19. @property (nonatomic, strong) FIRAppDistribution *appDistribution;
  20. @end
  21. @interface FIRAppDistribution (PrivateUnitTesting)
  22. - (instancetype)initWithApp:(FIRApp *)app
  23. appInfo:(NSDictionary *)appInfo;
  24. @end
  25. @implementation FIRAppDistributionSampleTests
  26. - (void)setUp {
  27. [super setUp];
  28. NSDictionary<NSString *, NSString *> *dict = [[NSDictionary<NSString *, NSString *> alloc] init];
  29. self.appDistribution = [[FIRAppDistribution alloc] initWithApp:nil appInfo:dict];
  30. }
  31. - (void)testGetSingleton {
  32. XCTAssertNotNil(self.appDistribution);
  33. }
  34. @end