package cmu.defect4j.jfree.data.time.junit; import gov.nasa.jpf.util.test.TestJPF; import org.junit.Test; import junit.framework.TestCase; public class MonthTests extends TestJPF { private final String[] config = {"+nhandler.delegateUnhandledNative", "+classpath+=${jpf-core}/lib/junit-4.11.jar,${jpf-core}/lib/jfreechart-1.2.0-ea1.jar"}; public static void main(String[] testMethods){ runTestsOfThisClass(testMethods); } @Test(timeout=120000) public void testEquals() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testEquals"); testcase.run(); } } @Test(timeout=120000) public void testHashcode() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testHashcode"); testcase.run(); } } @Test(timeout=120000) public void testSerialization() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testSerialization"); testcase.run(); } } @Test(timeout=120000) public void testDateConstructor1() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testDateConstructor1"); testcase.run(); } } @Test(timeout=120000) public void testEqualsSelf() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testEqualsSelf"); testcase.run(); } } @Test(timeout=120000) public void testDateConstructor2() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testDateConstructor2"); testcase.run(); } } @Test(timeout=120000) public void testNotCloneable() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testNotCloneable"); testcase.run(); } } @Test(timeout=120000) public void testGetSerialIndex() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetSerialIndex"); testcase.run(); } } @Test(timeout=120000) public void testGetFirstMillisecond() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetFirstMillisecond"); testcase.run(); } } @Test(timeout=120000) public void testGetFirstMillisecondWithTimeZone() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetFirstMillisecondWithTimeZone"); testcase.run(); } } @Test(timeout=120000) public void testGetFirstMillisecondWithCalendar() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetFirstMillisecondWithCalendar"); testcase.run(); } } @Test(timeout=120000) public void testGetLastMillisecond() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetLastMillisecond"); testcase.run(); } } @Test(timeout=120000) public void testGetLastMillisecondWithTimeZone() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetLastMillisecondWithTimeZone"); testcase.run(); } } @Test(timeout=120000) public void testGetLastMillisecondWithCalendar() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetLastMillisecondWithCalendar"); testcase.run(); } } @Test(timeout=120000) public void testNext() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testNext"); testcase.run(); } } @Test(timeout=120000) public void testGetStart() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetStart"); testcase.run(); } } @Test(timeout=120000) public void testGetEnd() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testGetEnd"); testcase.run(); } } @Test(timeout=120000) public void testJan1900Previous() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testJan1900Previous"); testcase.run(); } } @Test(timeout=120000) public void testJan1900Next() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testJan1900Next"); testcase.run(); } } @Test(timeout=120000) public void testDec9999Previous() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testDec9999Previous"); testcase.run(); } } @Test(timeout=120000) public void testDec9999Next() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testDec9999Next"); testcase.run(); } } @Test(timeout=120000) public void testParseMonth() throws Exception { if (verifyNoPropertyViolation(config)) { TestCase testcase = new org.jfree.data.time.junit.MonthTests("testParseMonth"); testcase.run(); } } }