Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

test suite inside spring context

Is it possible to run test suite with loaded spring context, something like this

@RunWith(Suite.class)
@SuiteClasses({ Test1.class, Test2.class })
@ContextConfiguration(locations = { "classpath:context.xml" }) <------
public class SuiteTest {
}

The code above obviously wont work, but is there any way to accomplish such behavior?

This is currently how spring context is used in my test suite:

@BeforeClass
public static void setUp() {
    final ConfigurableApplicationContext context =
            loadContext(new String[] { "context.xml" });
    jdbcTemplate = (JdbcTemplate) context.getBean("jdbcTemplate");
    // initialization of other beans...
}
like image 685
Marko Vranjkovic Avatar asked Jul 05 '13 08:07

Marko Vranjkovic


1 Answers

I have tried you code, the test suite are running with spring context loaded. Can you explain in more detail what the problem is?

here is the code:

@RunWith(Suite.class)
@SuiteClasses({ Test1.class, Test2.class })
public class SuiteTest {
}

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:context.xml" })
@Transactional
public class Test1 {}

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:context.xml" })
@Transactional
public class Test2 {}

If you want Suite class to have its own application context, try this:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:context.xml" })
@Transactional
public class SuiteTest {

    @Test public void run() {
        JUnitCore.runClasses(Test1.class, Test2.class);
    }

}
like image 133
Septem Avatar answered Nov 15 '22 05:11

Septem