Skip to content

Commit

Permalink
Add Request suffix for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
amitshekhariitbhu committed May 4, 2017
1 parent f6874b6 commit eb740e9
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderGet() throws InterruptedException {
public void testHeaderGetRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("{\"firstName\":\"Amit\", \"lastName\":\"Shekhar\"}"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderGet() throws InterruptedException {
public void testHeaderGetRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("{\"firstName\":\"Amit\", \"lastName\":\"Shekhar\"}"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderGet() throws InterruptedException {
public void testHeaderGetRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("data"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderMultipart() throws InterruptedException {
public void testHeaderMultipartRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("{\"firstName\":\"Amit\", \"lastName\":\"Shekhar\"}"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderMultipart() throws InterruptedException {
public void testHeaderMultipartRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("{\"firstName\":\"Amit\", \"lastName\":\"Shekhar\"}"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderMultipart() throws InterruptedException {
public void testHeaderMultipartRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("data"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderPost() throws InterruptedException {
public void testHeaderPostRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("{\"firstName\":\"Amit\", \"lastName\":\"Shekhar\"}"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderPost() throws InterruptedException {
public void testHeaderPostRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("{\"firstName\":\"Amit\", \"lastName\":\"Shekhar\"}"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ public void onError(ANError anError) {
assertEquals(404, errorCodeRef.get().intValue());
}

public void testHeaderPost() throws InterruptedException {
public void testHeaderPostRequest() throws InterruptedException {

server.enqueue(new MockResponse().setBody("data"));

Expand Down

0 comments on commit eb740e9

Please sign in to comment.