Formatting

This commit is contained in:
Dave Syer
2016-06-10 10:04:37 +01:00
parent 62f06d27e5
commit 179522de59
16 changed files with 88 additions and 74 deletions

View File

@@ -1,6 +1,7 @@
package demo;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -20,13 +21,14 @@ public class BootstrapDecryptionClientApplicationTests {
@Autowired
private ConfigClientProperties config;
@Autowired
private ConfigServicePropertySourceLocator locator;
@Test
public void contextLoads() throws Exception {
assertEquals("http://localhost:8888", config.getUri());
assertEquals("http://localhost:8888", this.config.getUri());
assertNotNull(this.locator);
}
}