package project; /** * A main that tests the integrated MUD. */ public class RAPTester { public static void main(String[] args) throws Exception { ReadAndParse rap = new ReadAndParse(new StubWorld(), new StubAccountManager()); rap.run(); } // main(String[]) } // class RAPTester