diff --git a/tamguo-crawler/src/test/java/com/tamguo/BookCrawler.java b/tamguo-crawler/src/test/java/com/tamguo/BookCrawler.java index 7b496bf..24634d6 100644 --- a/tamguo-crawler/src/test/java/com/tamguo/BookCrawler.java +++ b/tamguo-crawler/src/test/java/com/tamguo/BookCrawler.java @@ -1,23 +1,23 @@ package com.tamguo; -import com.tamguo.service.IBookService; -import com.tamguo.service.ISubjectService; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; +import com.tamguo.service.IBookService; + @RunWith(SpringRunner.class) @SpringBootTest public class BookCrawler { - @Autowired + @Autowired IBookService bookService; - + @Test public void crawlerBook() throws Exception { - bookService.crawlerBook(); + this.bookService.crawlerBook(); } - + }