PatentRightServiceTests.java 487 B

123456789101112131415161718192021222324
  1. package cn.cslg.pas.service;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. /**
  6. * @author chenyu
  7. * @date 2023/8/31
  8. */
  9. @SpringBootTest
  10. public class PatentRightServiceTests {
  11. @Autowired
  12. private TestService testService1;
  13. /**
  14. * 查询权利要求树
  15. */
  16. @Test
  17. void queryPatentRightTree() {
  18. testService1.getConfigById(76,2703);
  19. }
  20. }