Tests.m 664 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // LenzCameraNativeModuleForRNTests.m
  3. // LenzCameraNativeModuleForRNTests
  4. //
  5. // Created by 76930516@qq.com on 01/31/2023.
  6. // Copyright (c) 2023 76930516@qq.com. All rights reserved.
  7. //
  8. @import XCTest;
  9. @interface Tests : XCTestCase
  10. @end
  11. @implementation Tests
  12. - (void)setUp
  13. {
  14. [super setUp];
  15. // Put setup code here. This method is called before the invocation of each test method in the class.
  16. }
  17. - (void)tearDown
  18. {
  19. // Put teardown code here. This method is called after the invocation of each test method in the class.
  20. [super tearDown];
  21. }
  22. - (void)testExample
  23. {
  24. XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
  25. }
  26. @end