HHH-6014: ignoring the performance tests

This commit is contained in:
adamw 2011-04-01 23:16:23 +02:00
parent 3b83b6fd54
commit e9f16e4a76
4 changed files with 27 additions and 11 deletions

View File

@ -23,18 +23,22 @@
*/
package org.hibernate.envers.test.performance;
import java.io.IOException;
import java.util.Date;
import java.util.HashSet;
import javax.persistence.EntityManager;
import org.hibernate.ejb.Ejb3Configuration;
import org.hibernate.envers.test.performance.complex.ChildEntity1;
import org.hibernate.envers.test.performance.complex.ChildEntity2;
import org.hibernate.envers.test.performance.complex.RootEntity;
import org.junit.Ignore;
import javax.persistence.EntityManager;
import java.io.IOException;
import java.util.Date;
import java.util.HashSet;
/**
* @author Adam Warski (adam at warski dot org)
*/
@Ignore
public class ComplexInsertPerformance extends AbstractPerformanceTest {
public void configure(Ejb3Configuration cfg) {
cfg.addAnnotatedClass(RootEntity.class);

View File

@ -23,14 +23,18 @@
*/
package org.hibernate.envers.test.performance;
import java.io.IOException;
import javax.persistence.EntityManager;
import org.hibernate.ejb.Ejb3Configuration;
import org.hibernate.envers.test.entities.StrTestEntity;
import org.junit.Ignore;
import javax.persistence.EntityManager;
import java.io.IOException;
/**
* @author Adam Warski (adam at warski dot org)
*/
@Ignore
public class InsertsOneTransactionPerformance extends AbstractPerformanceTest {
public void configure(Ejb3Configuration cfg) {
cfg.addAnnotatedClass(StrTestEntity.class);

View File

@ -22,14 +22,18 @@
* Boston, MA 02110-1301 USA
*/
package org.hibernate.envers.test.performance;
import java.io.IOException;
import javax.persistence.EntityManager;
import org.hibernate.ejb.Ejb3Configuration;
import org.hibernate.envers.test.entities.StrTestEntity;
import org.junit.Ignore;
import javax.persistence.EntityManager;
import java.io.IOException;
/**
* @author Adam Warski (adam at warski dot org)
*/
@Ignore
public class InsertsPerformance extends AbstractPerformanceTest {
public void configure(Ejb3Configuration cfg) {
cfg.addAnnotatedClass(StrTestEntity.class);

View File

@ -22,17 +22,21 @@
* Boston, MA 02110-1301 USA
*/
package org.hibernate.envers.test.performance;
import org.hibernate.ejb.Ejb3Configuration;
import org.hibernate.envers.test.entities.StrTestEntity;
import org.junit.Ignore;
import javax.persistence.EntityManager;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import javax.persistence.EntityManager;
import org.hibernate.ejb.Ejb3Configuration;
import org.hibernate.envers.test.entities.StrTestEntity;
/**
* @author Adam Warski (adam at warski dot org)
*/
@Ignore
public class UpdatesPerformance extends AbstractPerformanceTest {
public void configure(Ejb3Configuration cfg) {
cfg.addAnnotatedClass(StrTestEntity.class);