@Test
public void commandLineTest_policyAsContinue() {
String[] argv = new String[] { "-log", "0", "-d", OutputDirectoryPatch.getOutputDirectory(),
"-configfailurepolicy", "continue",
"-testclass", "test.configurationfailurepolicy.ClassWithFailedBeforeMethodAndMultipleTests" };
TestListenerAdapter tla = new TestListenerAdapter();
TestNG.privateMain(argv, tla);
verify(tla, 2, 0, 2);
}