mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-26 01:28:50 -05:00
Use property to determine if we should write test debug information or not.
This commit is contained in:
parent
c829fe9cd2
commit
adf00946bf
@ -11,7 +11,7 @@ import static junit.framework.Assert.*;
|
||||
|
||||
public class HtmlConverterTest {
|
||||
// Useful if you want to write stuff to a file for debugging in a browser.
|
||||
private static final boolean WRITE_TO_FILE = true;
|
||||
private static final boolean WRITE_TO_FILE = Boolean.parseBoolean(System.getProperty("k9.htmlConverterTest.writeToFile", "false"));
|
||||
private static final String OUTPUT_FILE = "C:/temp/parse.html";
|
||||
|
||||
@Test
|
||||
|
Loading…
Reference in New Issue
Block a user