diff options
author | Magdalena Grodzińska <mag.grodzinska@gmail.com> | 2019-12-25 14:40:15 +0100 |
---|---|---|
committer | Magdalena Grodzińska <mag.grodzinska@gmail.com> | 2019-12-25 14:40:15 +0100 |
commit | cafcc4242fe6b6bc72a65b1012527fb1c0ebb3e5 (patch) | |
tree | 776551b69a1b1a9672a853f9a6db5c50e35368a4 /src/test/java/pl/edu | |
parent | b807c4ea723736f07bd25cec86908854679fda0e (diff) |
Add tests skeleton values
Diffstat (limited to 'src/test/java/pl/edu')
-rw-r--r-- | src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java b/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java index 750e2cb..13b9fd7 100644 --- a/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java +++ b/src/test/java/pl/edu/mimuw/cloudatlas/client/ClientTest.java @@ -56,15 +56,33 @@ public class ClientTest { @Test public void homeMessageCheck() throws Exception { - Thread.sleep(100); String response = this.restTemplate.getForObject("http://localhost:" + port + "/", String.class); assertThat(response, CoreMatchers.containsString("Welcome to CloudaAtlas client interface")); } @Test public void attributeValuesMessageCheck() throws Exception { - Thread.sleep(100); String response = this.restTemplate.getForObject("http://localhost:" + port + "/values", String.class); assertThat(response, CoreMatchers.containsString("Attribute values")); } + + @Test + public void queryInstallationCheck() throws Exception { + // TODO + } + + @Test + public void queryUninstallationCheck() throws Exception { + // TODO + } + + @Test + public void numericalRESTApiCheck() throws Exception { + // TODO + } + + @Test + public void allValuesRESTApiCheck() throws Exception { + // TODO + } } |