QGVAPlayerDemoTests.m 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // QGVAPlayerDemoTests.m
  2. // Tencent is pleased to support the open source community by making vap available.
  3. //
  4. // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
  5. //
  6. // Licensed under the MIT License (the "License"); you may not use this file except in
  7. // compliance with the License. You may obtain a copy of the License at
  8. //
  9. // http://opensource.org/licenses/MIT
  10. //
  11. // Unless required by applicable law or agreed to in writing, software distributed under the License is
  12. // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  13. // either express or implied. See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. #import <XCTest/XCTest.h>
  16. @interface QGVAPlayerDemoTests : XCTestCase
  17. @end
  18. @implementation QGVAPlayerDemoTests
  19. - (void)setUp {
  20. // Put setup code here. This method is called before the invocation of each test method in the class.
  21. }
  22. - (void)tearDown {
  23. // Put teardown code here. This method is called after the invocation of each test method in the class.
  24. }
  25. - (void)testExample {
  26. // This is an example of a functional test case.
  27. // Use XCTAssert and related functions to verify your tests produce the correct results.
  28. }
  29. - (void)testPerformanceExample {
  30. // This is an example of a performance test case.
  31. [self measureBlock:^{
  32. // Put the code you want to measure the time of here.
  33. }];
  34. }
  35. @end