HHH-6212 Consistent naming of test classes

This commit is contained in:
Hardy Ferentschik 2011-07-25 17:05:04 +02:00
parent 0c64e244c9
commit 8ecd7aace8
9 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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

View File

@ -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() {