LogMetricDemoTest.java

Download LogMetricDemoTest.java

 1: package com.wpollock;
 2: 
 3: import static org.junit.jupiter.api.Assertions.*;
 4: import org.junit.jupiter.api.*;  // Annotations
 5: 
 6: /**
 7:  * Unit test for simple LogMetricDemo.  Note, testing is
 8:  * not implemented for this demo, nor is the application
 9:  * designed for testability (main does too much).
10:  */
11: public class LogMetricDemoTest
12: {
13:     /**
14:      * Rigorous Test :-)
15:      */
16:     @Test
17:     public void shouldAnswerWithTrue()
18:     {
19:         assertTrue( true );
20:     }
21: }