| 5 | import static org.junit.Assert.*; |
| 6 | |
| 7 | public class JabelExampleTest { |
| 8 | |
| 9 | @Test |
| 10 | public void shouldWork() { |
| 11 | JabelExample jabelExample = new JabelExample(); |
| 12 | |
| 13 | String result = jabelExample.run(new String[0]); |
| 14 | |
| 15 | assertTrue("'" + result + "' should start with 'idk '", result.startsWith("idk ")); |
| 16 | |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected