GraphServiceTest.java 267 B

1234567891011
  1. package com.example.data_structure.service;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.boot.test.context.SpringBootTest;
  4. @SpringBootTest
  5. public class GraphServiceTest {
  6. @Autowired
  7. GraphService graphService;
  8. }