Skip to content

Commit

Permalink
Suffix IntegrationTests
Browse files Browse the repository at this point in the history
  • Loading branch information
IDragonfire committed Mar 6, 2017
1 parent e25b0dc commit c4fdd86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

@RunWith(SpringRunner.class)
@SpringBootTest
public class ClanControllerTest {
public class ClanControllerIntegrationTest {
private static final String OAUTH_CLIENT_ID = "1234";
private static final String OAUTH_SECRET = "secret";
private MockMvc mvc;
Expand All @@ -51,7 +51,7 @@ public class ClanControllerTest {
private final ShaPasswordEncoder shaPasswordEncoder;
private Player me;

public ClanControllerTest() {
public ClanControllerIntegrationTest() {
shaPasswordEncoder = new ShaPasswordEncoder(256);
objectMapper = new ObjectMapper();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

@RunWith(SpringRunner.class)
@SpringBootTest
public class JsonApiClanTest {
public class JsonApiClanIntegrationTest {
private static final String OAUTH_CLIENT_ID = "1234";
private static final String OAUTH_SECRET = "secret";
private MockMvc mvc;
Expand All @@ -58,7 +58,7 @@ public class JsonApiClanTest {
private ShaPasswordEncoder shaPasswordEncoder;
private Player me;

public JsonApiClanTest() {
public JsonApiClanIntegrationTest() {
objectMapper = new ObjectMapper();
shaPasswordEncoder = new ShaPasswordEncoder(256);
}
Expand Down

0 comments on commit c4fdd86

Please sign in to comment.