diff --git a/querydsl-apt/src/test/java/com/mysema/query/domain/JodaTimeSupportTest.java b/querydsl-apt/src/test/java/com/mysema/query/domain/JodaTimeSupportTest.java index 0362086e2..d0a87e086 100644 --- a/querydsl-apt/src/test/java/com/mysema/query/domain/JodaTimeSupportTest.java +++ b/querydsl-apt/src/test/java/com/mysema/query/domain/JodaTimeSupportTest.java @@ -50,14 +50,21 @@ public class JodaTimeSupportTest extends AbstractTest { } @Test - public void test() throws SecurityException, NoSuchFieldException { + public void test() throws IllegalAccessException, NoSuchFieldException { start(QJodaTimeSupportTest_JodaTimeSupport.class, QJodaTimeSupportTest_JodaTimeSupport.jodaTimeSupport); match(DateTimePath.class, "dateMidnight"); + matchType(DateMidnight.class, "dateMidnight"); match(DateTimePath.class, "dateTime"); + matchType(DateTime.class, "dateTime"); match(DateTimePath.class, "instant"); + matchType(Instant.class, "instant"); match(DatePath.class, "localDate"); + matchType(LocalDate.class, "localDate"); match(DateTimePath.class, "localDateTime"); + matchType(LocalDateTime.class, "localDateTime"); match(TimePath.class, "localTime"); + matchType(LocalTime.class, "localTime"); match(ComparablePath.class, "partial"); + matchType(Partial.class, "partial"); } }