RemoteConfigSwiftSampleTests.swift 1009 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // RemoteConfigSwiftSampleTests.swift
  3. // RemoteConfigSwiftSampleTests
  4. //
  5. // Created by Karen Zeng on 11/16/20.
  6. // Copyright © 2020 Firebase. All rights reserved.
  7. //
  8. import XCTest
  9. @testable import RemoteConfigSwiftSample
  10. class RemoteConfigSwiftSampleTests: XCTestCase {
  11. override func setUpWithError() throws {
  12. // Put setup code here. This method is called before the invocation of each test method in the class.
  13. }
  14. override func tearDownWithError() throws {
  15. // Put teardown code here. This method is called after the invocation of each test method in the class.
  16. }
  17. func testExample() throws {
  18. // This is an example of a functional test case.
  19. // Use XCTAssert and related functions to verify your tests produce the correct results.
  20. }
  21. func testPerformanceExample() throws {
  22. // This is an example of a performance test case.
  23. self.measure {
  24. // Put the code you want to measure the time of here.
  25. }
  26. }
  27. }