MusicGradeExamTests.m 880 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MusicGradeExamTests.m
  3. // MusicGradeExamTests
  4. //
  5. // Created by Kyle on 2020/7/13.
  6. // Copyright © 2020 DayaMusic. All rights reserved.
  7. //
  8. #import <XCTest/XCTest.h>
  9. @interface MusicGradeExamTests : XCTestCase
  10. @end
  11. @implementation MusicGradeExamTests
  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