DATAJPA-655 - Polishing.

Renamed the converters to ThreeTenBackPortJpaConverters to better reflect the project we're integrating with.

Related ticket: DATACMNS-628.
This commit is contained in:
Oliver Gierke
2015-01-05 18:18:56 +01:00
parent 3ca07ab63e
commit 2cf114b7a2
2 changed files with 15 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -30,11 +30,12 @@ import org.threeten.bp.LocalDateTime;
import org.threeten.bp.LocalTime;
/**
* Integration tests for {@link Jsr310BackPortJpaConverters}.
* Integration tests for {@link ThreeTenBackPortJpaConverters}.
*
* @author Oliver Gierke
* @since 1.8
*/
public class Jsr310BackPortJpaConvertersIntegrationTests extends AbstractAttributeConverterIntegrationTests {
public class ThreeTenBackPortJpaConvertersIntegrationTests extends AbstractAttributeConverterIntegrationTests {
@PersistenceContext EntityManager em;
@@ -42,7 +43,7 @@ public class Jsr310BackPortJpaConvertersIntegrationTests extends AbstractAttribu
* @see DATAJPA-650
*/
@Test
public void usesJsr310BackPortJpaConverters() {
public void usesThreeTenBackPortJpaConverters() {
assumeTrue(currentEntityManagerIsAJpa21EntityManager(em));