adding a test case
[IRC.git] / Robust / src / Benchmarks / MapReduce / Java / ToolRunner.java
1 public class ToolRunner {
2     
3     public static int run(Tool tool, String[] args) {
4         return tool.run(args);
5     }
6     
7 }