HHH-6212 Consistent naming of test classes
This commit is contained in:
parent
0c64e244c9
commit
8ecd7aace8
|
@ -41,7 +41,7 @@ import static junit.framework.Assert.assertEquals;
|
|||
* @author Hardy Ferentschik
|
||||
*/
|
||||
|
||||
public class AccessBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class AccessBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Entity
|
||||
class FieldAccess {
|
||||
@Id
|
|
@ -38,7 +38,7 @@ import static junit.framework.Assert.assertEquals;
|
|||
*
|
||||
* @author Hardy Ferentschik
|
||||
*/
|
||||
public class BatchSizeBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class BatchSizeBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
@Resources(annotatedClasses = NoBatchSizeEntity.class)
|
||||
public void testNoBatchSize() {
|
|
@ -45,7 +45,7 @@ import static junit.framework.Assert.assertNull;
|
|||
*
|
||||
* @author Hardy Ferentschik
|
||||
*/
|
||||
public class CacheBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class CacheBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
@Resources(annotatedClasses = HibernateCacheEntity.class, cacheMode = SharedCacheMode.ALL)
|
||||
public void testHibernateCaching() {
|
|
@ -46,7 +46,7 @@ import static junit.framework.Assert.assertNull;
|
|||
*
|
||||
* @author Hardy Ferentschik
|
||||
*/
|
||||
public class CustomSQLBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class CustomSQLBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
@Resources(annotatedClasses = NoCustomSQLEntity.class)
|
||||
public void testNoCustomSqlAnnotations() {
|
|
@ -44,7 +44,7 @@ import static junit.framework.Assert.assertTrue;
|
|||
* @author Hardy Ferentschik
|
||||
*/
|
||||
@FailureExpected(jiraKey = "HHH-6447", message = "Work in progress")
|
||||
public class EmbeddableBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class EmbeddableBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
//@Resources(annotatedClasses = { User.class, Address.class })
|
||||
public void testEmbeddable() {
|
|
@ -49,7 +49,7 @@ import static junit.framework.Assert.assertTrue;
|
|||
* @author Hardy Ferentschik
|
||||
*/
|
||||
@FailureExpected(jiraKey = "HHH-6447", message = "Work in progress")
|
||||
public class MappedSuperclassTests extends BaseAnnotationBindingTestCase {
|
||||
public class MappedSuperclassTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
// @Resources(annotatedClasses = { MyMappedSuperClass.class, MyEntity.class, MyMappedSuperClassBase.class })
|
||||
public void testSimpleAttributeOverrideInMappedSuperclass() {
|
|
@ -40,7 +40,7 @@ import static junit.framework.Assert.assertTrue;
|
|||
*
|
||||
* @author Hardy Ferentschik
|
||||
*/
|
||||
public class ProxyBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class ProxyBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
@Resources(annotatedClasses = ProxiedEntity.class)
|
||||
public void testProxyNoAttributes() {
|
|
@ -14,7 +14,7 @@ import static org.junit.Assert.assertEquals;
|
|||
/**
|
||||
* @author Strong Liu
|
||||
*/
|
||||
public class QuotedIdentifierTests extends BaseAnnotationBindingTestCase {
|
||||
public class QuotedIdentifierTest extends BaseAnnotationBindingTestCase {
|
||||
private final String ormPath = "org/hibernate/metamodel/source/annotations/xml/orm-quote-identifier.xml";
|
||||
|
||||
@Test
|
|
@ -45,7 +45,7 @@ import static junit.framework.Assert.assertTrue;
|
|||
*
|
||||
* @author Strong Liu
|
||||
*/
|
||||
public class UniqueConstraintBindingTests extends BaseAnnotationBindingTestCase {
|
||||
public class UniqueConstraintBindingTest extends BaseAnnotationBindingTestCase {
|
||||
@Test
|
||||
@Resources(annotatedClasses = TableWithUniqueConstraint.class)
|
||||
public void testTableUniqueConstraints() {
|
Loading…
Reference in New Issue