TestGIFTests.m 854 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // TestGIFTests.m
  3. // TestGIFTests
  4. //
  5. // Created by huangyirong on 2020/6/2.
  6. // Copyright © 2020 Sogou. All rights reserved.
  7. //
  8. #import <XCTest/XCTest.h>
  9. @interface TestGIFTests : XCTestCase
  10. @end
  11. @implementation TestGIFTests
  12. - (void)setUp {
  13. // Put setup code here. This method is called before the invocation of each test method in the class.
  14. }
  15. - (void)tearDown {
  16. // Put teardown code here. This method is called after the invocation of each test method in the class.
  17. }
  18. - (void)testExample {
  19. // This is an example of a functional test case.
  20. // Use XCTAssert and related functions to verify your tests produce the correct results.
  21. }
  22. - (void)testPerformanceExample {
  23. // This is an example of a performance test case.
  24. [self measureBlock:^{
  25. // Put the code you want to measure the time of here.
  26. }];
  27. }
  28. @end