Convert Sparky to Spring-Boot
[aai/sparky-be.git] / sparkybe-onap-service / src / test / java / org / onap / aai / sparky / logging / util / LoggingUtilsTest.java
1 package org.onap.aai.sparky.logging.util;
2
3 import static org.junit.Assert.assertEquals;
4
5 import org.junit.Before;
6 import org.junit.Test;
7 import org.onap.aai.sparky.logging.util.LoggingUtils;
8
9 public class LoggingUtilsTest {
10         
11         private LoggingUtils durationTester; 
12         @Before
13           public void init() throws Exception {
14              durationTester = new LoggingUtils(); 
15           }
16         
17         @Test 
18         public void durationTester() {
19                 
20                 
21                 assertEquals("1425",durationTester.setDuration(3575, 5000));
22                 
23         }
24
25 }