}
/**
* Tests command line switches for warning = 0
*/
public void testWarningLevel0() {
ForteCCCompiler compiler = ForteCCCompiler.getInstance();
Vector args = new Vector();
compiler.addWarningSwitch(args, 0);
assertEquals(1, args.size());
assertEquals("-w", args.elementAt(0));
}