MCPcopy Create free account
hub / github.com/akeranen/the-one / setUp

Method setUp

test/ExternalEventsQueueTest.java:43–55  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

41 private File tempFile;
42
43 protected void setUp() throws Exception {
44 java.util.Locale.setDefault(java.util.Locale.US);
45 super.setUp();
46 String TMP = ".tmp";
47 tempFile = File.createTempFile("eeqTest", TMP);
48
49 PrintWriter out = new PrintWriter(tempFile);
50
51 for (String s : stdinput) {
52 out.println(s);
53 }
54 out.close();
55 }
56
57
58 public void testEEQ() {

Callers

nothing calls this directly

Calls 1

closeMethod · 0.65

Tested by

no test coverage detected