diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-21 23:41:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-21 23:41:03 +0200 |
commit | cba389dcee6ddd3d0cffd82d4c28beb87e53c58a (patch) | |
tree | 932dcc58798d99302f64de11e63ecea5fcba8320 /sonar-ws-client | |
parent | 30ba10e719b5152c529dc6022f48fe6f5c79dcb7 (diff) | |
download | sonarqube-cba389dcee6ddd3d0cffd82d4c28beb87e53c58a.tar.gz sonarqube-cba389dcee6ddd3d0cffd82d4c28beb87e53c58a.zip |
Continue move from hamcrest to fest-assert
Diffstat (limited to 'sonar-ws-client')
-rw-r--r-- | sonar-ws-client/src/test/java/org/sonar/wsclient/services/ServerSetupQueryTest.java | 9 | ||||
-rw-r--r-- | sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ResourceUnmarshallerTest.java | 4 |
2 files changed, 6 insertions, 7 deletions
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/services/ServerSetupQueryTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/services/ServerSetupQueryTest.java index 94a18f4ff44..e7f899a06c7 100644 --- a/sonar-ws-client/src/test/java/org/sonar/wsclient/services/ServerSetupQueryTest.java +++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/services/ServerSetupQueryTest.java @@ -19,16 +19,15 @@ */ package org.sonar.wsclient.services; -import static org.hamcrest.Matchers.is; -import static org.junit.Assert.assertThat; - import org.junit.Test; +import static org.fest.assertions.Assertions.assertThat; + public class ServerSetupQueryTest extends QueryTestCase { @Test public void index() { ServerSetupQuery query = new ServerSetupQuery(); - assertThat(query.getUrl(), is("/api/server/setup")); - assertThat(query.getModelClass().getName(), is(ServerSetup.class.getName())); + assertThat(query.getUrl()).isEqualTo("/api/server/setup"); + assertThat(query.getModelClass().getName()).isEqualTo(ServerSetup.class.getName()); } } diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ResourceUnmarshallerTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ResourceUnmarshallerTest.java index 551a0597fd8..4fac008d1a0 100644 --- a/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ResourceUnmarshallerTest.java +++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/ResourceUnmarshallerTest.java @@ -24,9 +24,9 @@ import org.sonar.wsclient.services.Resource; import java.util.List; -import static org.hamcrest.Matchers.nullValue; +import static org.hamcrest.CoreMatchers.not; +import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.core.Is.is; -import static org.hamcrest.core.IsNot.not; import static org.junit.Assert.assertThat; public class ResourceUnmarshallerTest extends UnmarshallerTestCase { |