changing the names of tests

This commit is contained in:
eugenp 2017-05-14 19:30:10 +03:00
parent e0b85586e2
commit d8cf653345
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import org.junit.Test;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class TenantScopeTest {
public class TenantScopeIntegrationTest {
@Test
public final void whenRegisterScopeAndBeans_thenContextContainsFooAndBar() {

View File

@ -8,7 +8,7 @@ import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class SquareCalculatorTest {
public class SquareCalculatorUnitTest {
private SquaredCalculator squaredCalculator = new SquaredCalculator();
private CacheHelper cacheHelper = new CacheHelper();

View File

@ -5,7 +5,7 @@ import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.env.ConfigurableEnvironment;
public class SpringProfilesWithXMLTest {
public class SpringProfilesWithXMLIntegrationTest {
private ClassPathXmlApplicationContext classPathXmlApplicationContext;