Skip to content

Instantly share code, notes, and snippets.

@ismailkocacan
Created April 21, 2014 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ismailkocacan/11156192 to your computer and use it in GitHub Desktop.
Save ismailkocacan/11156192 to your computer and use it in GitHub Desktop.
import junit.framework.TestCase;
public class TestDateUtil extends TestCase
{
public TestDateUtil(String name)
{
super(name);
}
protected void setUp() throws Exception
{
super.setUp();
}
protected void tearDown() throws Exception
{
super.tearDown();
}
public void test_30_12_2013_to_pazartesi()
{
Date date = DateHelper.getDateOfMonday();
String actualValue = DateHelper.dateToString(date);
assertEquals(actualValue+" Değerler uyuşmuyor panpa !","30.12.2013", actualValue);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment