/** * */ package de.fhswf.in.inf.java1.aufgabe09; import java.io.File; /** * Tests the WordCount class. * * @author $Author: $ * @version $Revision: $, $Date: $ UTC */ public final class WordCountTest { /** * Private constructor for utility class. * */ private WordCountTest() { } /** * Tests the WordCount class. * * @param args * Command line arguments. */ public static void main(String[] args) { File file = new File( "C:/eclipse/workspace/java1/misc/Blatt9TestFile2.txt"); WordCount tmp = new WordCount(); tmp.readFile(file); System.out.println(tmp); System.out.println("fgh = " + tmp.getCount("fgh")); } }