public static void
main(String args[])
{
try
{
final ArgHelperOptionsInfo optionInfo = new ArgHelperOptionsInfo( );
optionInfo.addOptions( "port,1 testInProcess" );
final ArgHelperImpl argHelper = new ArgHelperImpl( Arrays.asList( args ).listIterator(), optionInfo);
final Integer port = argHelper.getInteger( "--port" );
if ( port == null )