Getopts g = new Getopts("cdhlxnp:s:r:", args);
assertTrue(!g.error());
assertEquals("password", g.option('p'));
assertEquals(1, g.argc());
assertEquals("filename", g.argv(0));
}
public static void main(String[] args) {
junit.textui.TestRunner.run(suite());
System.exit(0);