public static void main(String[] args) throws IOException, InterruptedException {
if (args.length != 1) {
UI.writeError("Please provide the path to a large text file");
} else {
ApplicationManager.runSafely(new TestsApplicationContextFactory(new BigramTestsMain(new File(args[0]))));
}
}