--- old/test/java/time/test/java/time/TestMonthDay.java 2013-04-11 23:17:53.000000000 -0700 +++ new/test/java/time/test/java/time/TestMonthDay.java 2013-04-11 23:17:53.000000000 -0700 @@ -78,7 +78,7 @@ private MonthDay TEST_07_15; - @BeforeMethod(groups={"tck","implementation"}) + @BeforeMethod public void setUp() { TEST_07_15 = MonthDay.of(7, 15); } @@ -95,24 +95,24 @@ assertEquals(test.getDayOfMonth(), d); } - @Test(groups={"implementation"}) + @Test public void test_with_Month_noChangeSame() { MonthDay test = MonthDay.of(6, 30); assertSame(test.with(Month.JUNE), test); } - @Test(groups={"implementation"}) + @Test public void test_withMonth_int_noChangeSame() { MonthDay test = MonthDay.of(6, 30); assertSame(test.withMonth(6), test); } - @Test(groups={"implementation"}) + @Test public void test_withDayOfMonth_noChangeSame() { MonthDay test = MonthDay.of(6, 30); assertSame(test.withDayOfMonth(30), test); } - @Test(groups={"implementation"}) + @Test public void test_adjustDate_same() { MonthDay test = MonthDay.of(6, 30); LocalDate date = LocalDate.of(2007, 6, 30);