junit.framework.Assert コマンドをインラインで無効にして有効にする方法があるかどうか教えてください。
私が何を意味するかを示すためのコード例:
junitOff(); // first method I need help with
assertTrue(false); //would normally cause an AssertionError
junitOn(); // second method I need help with
System.out.println("Broke through asserTrue without Error")
try/catch を使用できることはわかっていますが、アサートの後の行で実行を続行できないため、それは私が探しているものではありません...