tamguo 7 years ago
commit f1bb51f251

@ -1,23 +1,23 @@
package com.tamguo; package com.tamguo;
import com.tamguo.service.IBookService;
import com.tamguo.service.ISubjectService;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.context.junit4.SpringRunner;
import com.tamguo.service.IBookService;
@RunWith(SpringRunner.class) @RunWith(SpringRunner.class)
@SpringBootTest @SpringBootTest
public class BookCrawler { public class BookCrawler {
@Autowired @Autowired
IBookService bookService; IBookService bookService;
@Test @Test
public void crawlerBook() throws Exception { public void crawlerBook() throws Exception {
bookService.crawlerBook(); this.bookService.crawlerBook();
} }
} }

Loading…
Cancel
Save