Skip to content

Commit 045cea5

Browse files
refactor names of test methods
Made name of test methods to start with small letter.
1 parent 1af59bf commit 045cea5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/com/ericsson/ei/frontend/BackendInformationControllerUtilsTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void testHandleRequestToSwitchBackEnd() throws Exception {
154154
}
155155

156156
@Test
157-
public void TestHandleRequestToDeleteBackEnd() throws Exception {
157+
public void testHandleRequestToDeleteBackEnd() throws Exception {
158158
ResponseEntity<String> response;
159159
ResponseEntity<String> expectedResponse;
160160

@@ -166,7 +166,7 @@ public void TestHandleRequestToDeleteBackEnd() throws Exception {
166166
}
167167

168168
@Test
169-
public void TestHandleRequestToAddBackEnd() throws Exception {
169+
public void testHandleRequestToAddBackEnd() throws Exception {
170170
when(stream.collect(any())).thenReturn(instance.toString());
171171
ResponseEntity<String> response;
172172
ResponseEntity<String> expectedResponse;
@@ -212,4 +212,4 @@ private ResponseEntity<String> createExpectedResponse(String response, HttpStatu
212212
return expectedResponse;
213213
}
214214

215-
}
215+
}

0 commit comments

Comments
 (0)