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