From 275d43dfdeeeb6d13e416d40e2f3f4ddba796de8 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Fri, 6 May 2011 18:58:41 +0000 Subject: [PATCH] Rename Property{SourcesProperty}ResolverTests --- ...va => PropertySourcesPropertyResolverTests.java} | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) rename org.springframework.core/src/test/java/org/springframework/core/env/{PropertyResolverTests.java => PropertySourcesPropertyResolverTests.java} (98%) diff --git a/org.springframework.core/src/test/java/org/springframework/core/env/PropertyResolverTests.java b/org.springframework.core/src/test/java/org/springframework/core/env/PropertySourcesPropertyResolverTests.java similarity index 98% rename from org.springframework.core/src/test/java/org/springframework/core/env/PropertyResolverTests.java rename to org.springframework.core/src/test/java/org/springframework/core/env/PropertySourcesPropertyResolverTests.java index d3753d7144c..4905ae96a04 100644 --- a/org.springframework.core/src/test/java/org/springframework/core/env/PropertyResolverTests.java +++ b/org.springframework.core/src/test/java/org/springframework/core/env/PropertySourcesPropertyResolverTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -30,15 +30,13 @@ import org.junit.Before; import org.junit.Test; import org.springframework.mock.env.MockPropertySource; - /** - * Unit tests for {@link PropertyResolver}. + * Unit tests for {@link PropertySourcesPropertyResolver}. * * @author Chris Beams * @since 3.1 - * @see PropertySourcesPropertyResolver */ -public class PropertyResolverTests { +public class PropertySourcesPropertyResolverTests { private Properties testProperties; private MutablePropertySources propertySources; private ConfigurablePropertyResolver propertyResolver; @@ -179,9 +177,6 @@ public class PropertyResolverTests { } } - - - /* @Test public void resolvePlaceholders() { MutablePropertySources propertySources = new MutablePropertySources(); @@ -242,5 +237,5 @@ public class PropertyResolverTests { public void resolveRequiredPlaceholders_withNullInput() { new PropertySourcesPropertyResolver(new MutablePropertySources()).resolveRequiredPlaceholders(null); } - */ + }