Changeset 1496 for trunk/autoquest-htmlmonitor-test
- Timestamp:
- 04/11/14 12:12:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java
r1429 r1496 19 19 import java.io.File; 20 20 import java.util.Collection; 21 import java.util.HashMap;22 21 import java.util.Iterator; 23 22 import java.util.List; … … 152 151 assertTrue(logFile.exists()); 153 152 154 HTMLLogParser parser = new HTMLLogParser(n ew HashMap<String, List<String>>());153 HTMLLogParser parser = new HTMLLogParser(null); 155 154 156 155 parser.parseFile(logFile); … … 368 367 assertTrue(logFile.exists()); 369 368 370 HTMLLogParser parser = new HTMLLogParser(n ew HashMap<String, List<String>>());369 HTMLLogParser parser = new HTMLLogParser(null); 371 370 372 371 parser.parseFile(logFile); … … 526 525 htmlMonitor = null; 527 526 528 HTMLLogParser parser = new HTMLLogParser(n ew HashMap<String, List<String>>());527 HTMLLogParser parser = new HTMLLogParser(null); 529 528 530 529 // assert 9 already rotated log files … … 685 684 assertTrue(logFile2.exists()); 686 685 687 HTMLLogParser parser = new HTMLLogParser(n ew HashMap<String, List<String>>());686 HTMLLogParser parser = new HTMLLogParser(null); 688 687 689 688 parser.parseFile(logFile1);
Note: See TracChangeset
for help on using the changeset viewer.