fix tests
This commit is contained in:
@@ -17,7 +17,7 @@ import java.util.List;
|
|||||||
public class CrawlerTest extends Assert {
|
public class CrawlerTest extends Assert {
|
||||||
private final static Logger LOG = LoggerFactory.getLogger(CrawlerTest.class);
|
private final static Logger LOG = LoggerFactory.getLogger(CrawlerTest.class);
|
||||||
|
|
||||||
private final static ArrayList<Point> entrys = new ArrayList<>();
|
private final ArrayList<Point> entrys = new ArrayList<>();
|
||||||
private final static Point x1 = new Point("x1", -40);
|
private final static Point x1 = new Point("x1", -40);
|
||||||
private final static Point x2 = new Point("x2", -20);
|
private final static Point x2 = new Point("x2", -20);
|
||||||
private final static Point x3 = new Point("x3", -10, true);
|
private final static Point x3 = new Point("x3", -10, true);
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import java.util.Optional;
|
|||||||
public class GraphTest extends Assert {
|
public class GraphTest extends Assert {
|
||||||
private final static Logger LOG = LoggerFactory.getLogger(GraphTest.class);
|
private final static Logger LOG = LoggerFactory.getLogger(GraphTest.class);
|
||||||
|
|
||||||
private final static ArrayList<Point> entrys = new ArrayList<>();
|
private final ArrayList<Point> entrys = new ArrayList<>();
|
||||||
private final static Point x1 = new Point("x1",-40);
|
private final static Point x1 = new Point("x1",-40);
|
||||||
private final static Point x2 = new Point("x2",-20);
|
private final static Point x2 = new Point("x2",-20);
|
||||||
private final static Point x3 = new Point("x3",-10, true);
|
private final static Point x3 = new Point("x3",-10, true);
|
||||||
|
|||||||
Reference in New Issue
Block a user