View Javadoc

1   package com.aragost.javahg;
2   
3   import org.junit.Assert;
4   import org.junit.Test;
5   
6   public class DateTimeTest {
7   
8       @Test
9       public void testDateFormat() {
10          DateTime date = new DateTime(1234 * 1000, 20 * 60 * 60 * 1000);
11          String dateFormatted = date.getHgString();
12          Assert.assertEquals("1234 72000", dateFormatted);
13      }
14  
15  }