Skip to content

Commit

Permalink
Added new tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Vickery committed Mar 21, 2012
1 parent 7ddbfa0 commit 5e47d74
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
@@ -0,0 +1,13 @@
package com.sample.em;

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(
locations = {"classpath:META-INF/spring/mv/gateways-context.xml"}
)
public class RecipeMixerIntegrationTest {

}
@@ -0,0 +1,13 @@
package com.sample.ip;

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(
locations = {"classpath:META-INF/spring/mv/gateways-context.xml"}
)
public class RecipeMixerIntegrationTest {

}
@@ -0,0 +1,14 @@
package com.sample.mdl;

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(
locations = {"classpath:META-INF/spring/mv/gateways-context.xml"}
)
public class RecipeMixerIntegrationTest {


}

0 comments on commit 5e47d74

Please sign in to comment.