VapxToolTests.m 1.4 KB

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