@ -151,7 +153,7 @@ public abstract class AbstractAnnotationAwareTransactionalTests extends
@@ -151,7 +153,7 @@ public abstract class AbstractAnnotationAwareTransactionalTests extends
if(isDisabledInThisEnvironment(testMethod)){
recordDisabled();
this.logger.info("**** "+getClass().getName()+"."+getName()+" disabled in this environment: "
this.logger.info("**** "+getClass().getName()+"."+getName()+" is disabled in this environment: "
@ -157,13 +159,31 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@@ -157,13 +159,31 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
}
@SuppressWarnings({"rawtypes","unchecked"})
@Override
publicvoidrunBare()throwsThrowable{
if(!shouldUseShadowLoader()){
// getName will return the name of the method being run.
if(isDisabledInThisEnvironment(getName())){
// Let superclass log that we didn't run the test.
super.runBare();
return;
}
finalMethodtestMethod=getTestMethod();
if(isDisabledInThisEnvironment(testMethod)){
recordDisabled();
this.logger.info("**** "+getClass().getName()+"."+getName()+" is disabled in this environment: "
@ -305,6 +325,7 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@@ -305,6 +325,7 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@ -325,6 +346,7 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@@ -325,6 +346,7 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@ -143,6 +143,7 @@ public abstract class AbstractAnnotationAwareTransactionalTests extends
@@ -143,6 +143,7 @@ public abstract class AbstractAnnotationAwareTransactionalTests extends
*/
@Override
publicvoidrunBare()throwsThrowable{
// getName will return the name of the method being run.
if(isDisabledInThisEnvironment(getName())){
// Let superclass log that we didn't run the test.
@ -154,7 +155,7 @@ public abstract class AbstractAnnotationAwareTransactionalTests extends
@@ -154,7 +155,7 @@ public abstract class AbstractAnnotationAwareTransactionalTests extends
if(isDisabledInThisEnvironment(testMethod)){
recordDisabled();
this.logger.info("**** "+getClass().getName()+"."+getName()+" disabled in this environment: "
this.logger.info("**** "+getClass().getName()+"."+getName()+" is disabled in this environment: "
@ -163,6 +163,23 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@@ -163,6 +163,23 @@ public abstract class AbstractJpaTests extends AbstractAnnotationAwareTransactio
@Override
@SuppressWarnings({"rawtypes","unchecked"})
publicvoidrunBare()throwsThrowable{
// getName will return the name of the method being run.
if(isDisabledInThisEnvironment(getName())){
// Let superclass log that we didn't run the test.
super.runBare();
return;
}
finalMethodtestMethod=getTestMethod();
if(isDisabledInThisEnvironment(testMethod)){
recordDisabled();
this.logger.info("**** "+getClass().getName()+"."+getName()+" is disabled in this environment: "