Commit 24bd93635e3d8ac3aaa8b66b5596365388d5c1eb

Authored by Emerson Oliveira
1 parent d3ecd3f3
Exists in master

Refatoração dos teste de valor padrão

impl/core/src/test/java/configuration/field/defaultvalue/ConfigurationDefaultValueTest.java
... ... @@ -82,7 +82,7 @@ public class ConfigurationDefaultValueTest {
82 82 @Test
83 83 public void loadDefaultValueWithKey() {
84 84 assertEquals("Initialized value of the property file", filledFieldConfig.getStringDefaultWithKey());
85   - assertEquals("Initialized value and key in the property file", noFileConfig.getStringDefaultWithKey());
86 85 assertEquals("", emptyFieldsConfig.getStringDefaultWithKey());
  86 + assertEquals("Initialized value and key in the property file", noFileConfig.getStringDefaultWithKey());
87 87 }
88 88 }
... ...