Commit 547baed0466cc7a6c5df2d198582d64f8660afb6

Authored by Emerson Oliveira
1 parent 340200a3
Exists in master

Refatoração do nome da classe ExistentPrefix, para melhorar a

legibilidade do código, e modificação do valor da propriedade para um
texto mais adequado
impl/core/src/test/java/br/gov/frameworkdemoiselle/configuration/prefix/ConfigurationPrefixTest.java
@@ -56,7 +56,7 @@ import br.gov.frameworkdemoiselle.configuration.AbstractConfigurationTest; @@ -56,7 +56,7 @@ import br.gov.frameworkdemoiselle.configuration.AbstractConfigurationTest;
56 public class ConfigurationPrefixTest extends AbstractConfigurationTest { 56 public class ConfigurationPrefixTest extends AbstractConfigurationTest {
57 57
58 @Inject 58 @Inject
59 - private ExistentPrefix existentPrefix; 59 + private PrefixEndindWithoutDot endingWithoutDotPrefix;
60 60
61 @Inject 61 @Inject
62 private MissingPrefix missingPrefix; 62 private MissingPrefix missingPrefix;
@@ -77,7 +77,7 @@ public class ConfigurationPrefixTest extends AbstractConfigurationTest { @@ -77,7 +77,7 @@ public class ConfigurationPrefixTest extends AbstractConfigurationTest {
77 77
78 @Test 78 @Test
79 public void loadFromPrefixedExistentProperty() { 79 public void loadFromPrefixedExistentProperty() {
80 - assertEquals("with prefix", existentPrefix.getPrefixedAttribute()); 80 + assertEquals("prefix ending without dot", endingWithoutDotPrefix.getPrefixedAttribute());
81 } 81 }
82 82
83 @Test 83 @Test
impl/core/src/test/java/br/gov/frameworkdemoiselle/configuration/prefix/ExistentPrefix.java
@@ -1,7 +0,0 @@ @@ -1,7 +0,0 @@
1 -package br.gov.frameworkdemoiselle.configuration.prefix;  
2 -  
3 -import br.gov.frameworkdemoiselle.configuration.Configuration;  
4 -  
5 -@Configuration(prefix = "prefix")  
6 -public class ExistentPrefix extends AbstractPrefixConfig {  
7 -}  
impl/core/src/test/java/br/gov/frameworkdemoiselle/configuration/prefix/PrefixEndindWithoutDot.java 0 → 100644
@@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
  1 +package br.gov.frameworkdemoiselle.configuration.prefix;
  2 +
  3 +import br.gov.frameworkdemoiselle.configuration.Configuration;
  4 +
  5 +@Configuration(prefix = "prefix")
  6 +public class PrefixEndindWithoutDot extends AbstractPrefixConfig {
  7 +}
impl/core/src/test/resources/configuration/prefix/demoiselle.properties
@@ -33,6 +33,6 @@ @@ -33,6 +33,6 @@
33 # ou escreva para a Fundação do Software Livre (FSF) Inc., 33 # ou escreva para a Fundação do Software Livre (FSF) Inc.,
34 # 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA. 34 # 51 Franklin St, Fifth Floor, Boston, MA 02111-1301, USA.
35 35
36 -prefix.prefixedAttribute=with prefix 36 +prefix.prefixedAttribute=prefix ending without dot
37 prefixedAttribute=without prefix 37 prefixedAttribute=without prefix
38 endingWithDot.prefixedAttribute=prefix ending with dot 38 endingWithDot.prefixedAttribute=prefix ending with dot