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