Merge branch 'SPR-9984' into 3.2.x

* SPR-9984:
  Add quartz scheduling test to TestGroup.PERFORMANCE
master
Chris Beams 12 years ago
commit 1220611f4a
  1. 4
      spring-context-support/src/test/java/org/springframework/scheduling/quartz/QuartzSupportTests.java

@ -57,6 +57,8 @@ import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder; import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.RootBeanDefinition; import org.springframework.beans.factory.support.RootBeanDefinition;
import org.springframework.beans.factory.support.StaticListableBeanFactory; import org.springframework.beans.factory.support.StaticListableBeanFactory;
import org.springframework.build.junit.Assume;
import org.springframework.build.junit.TestGroup;
import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.context.support.StaticApplicationContext; import org.springframework.context.support.StaticApplicationContext;
import org.springframework.core.io.FileSystemResourceLoader; import org.springframework.core.io.FileSystemResourceLoader;
@ -964,6 +966,8 @@ public class QuartzSupportTests {
// SPR-6038: detect HSQL and stop illegal locks being taken // SPR-6038: detect HSQL and stop illegal locks being taken
@Test @Test
public void testSchedulerWithHsqlDataSource() throws Exception { public void testSchedulerWithHsqlDataSource() throws Exception {
Assume.group(TestGroup.PERFORMANCE);
DummyJob.param = 0; DummyJob.param = 0;
DummyJob.count = 0; DummyJob.count = 0;

Loading…
Cancel
Save