Ignore:
Timestamp:
04/11/14 12:12:52 (10 years ago)
Author:
pharms
Message:
  • adapted parsing of HTML files to have more power in specifying replacements
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java

    r1429 r1496  
    1919import java.io.File; 
    2020import java.util.Collection; 
    21 import java.util.HashMap; 
    2221import java.util.Iterator; 
    2322import java.util.List; 
     
    152151        assertTrue(logFile.exists()); 
    153152         
    154         HTMLLogParser parser = new HTMLLogParser(new HashMap<String, List<String>>()); 
     153        HTMLLogParser parser = new HTMLLogParser(null); 
    155154         
    156155        parser.parseFile(logFile); 
     
    368367        assertTrue(logFile.exists()); 
    369368         
    370         HTMLLogParser parser = new HTMLLogParser(new HashMap<String, List<String>>()); 
     369        HTMLLogParser parser = new HTMLLogParser(null); 
    371370         
    372371        parser.parseFile(logFile); 
     
    526525        htmlMonitor = null; 
    527526         
    528         HTMLLogParser parser = new HTMLLogParser(new HashMap<String, List<String>>()); 
     527        HTMLLogParser parser = new HTMLLogParser(null); 
    529528         
    530529        // assert 9 already rotated log files 
     
    685684        assertTrue(logFile2.exists()); 
    686685          
    687         HTMLLogParser parser = new HTMLLogParser(new HashMap<String, List<String>>()); 
     686        HTMLLogParser parser = new HTMLLogParser(null); 
    688687         
    689688        parser.parseFile(logFile1); 
Note: See TracChangeset for help on using the changeset viewer.