Java Date calculation example

This commit is contained in:
Umesh Awasthi
2018-04-29 09:28:02 -07:00
parent b7c974db9f
commit 2779473cc2
5 changed files with 161 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.javadevjournal;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
/**
* Unit test for simple App.
*/
public class AppTest
{
/**
* Rigorous Test :-)
*/
@Test
public void shouldAnswerWithTrue()
{
assertTrue( true );
}
}