merge test conflicts
This commit is contained in:
parent
2817953d0b
commit
19b65ea960
|
@ -1 +1 @@
|
||||||
server.contextPath=/StudentDirectory
|
server.contextPath=/
|
|
@ -17,6 +17,7 @@ app.controller('StudentCtrl', ['$scope','StudentService', function ($scope,Stude
|
||||||
paginationPageSizes: [5, 10, 20],
|
paginationPageSizes: [5, 10, 20],
|
||||||
paginationPageSize: paginationOptions.pageSize,
|
paginationPageSize: paginationOptions.pageSize,
|
||||||
enableColumnMenus:false,
|
enableColumnMenus:false,
|
||||||
|
useExternalPagination: true,
|
||||||
columnDefs: [
|
columnDefs: [
|
||||||
{ name: 'studentId' },
|
{ name: 'studentId' },
|
||||||
{ name: 'name' },
|
{ name: 'name' },
|
||||||
|
|
|
@ -19,7 +19,7 @@ import static org.hamcrest.core.IsEqual.equalTo;
|
||||||
@IntegrationTest("server.port:8888")
|
@IntegrationTest("server.port:8888")
|
||||||
public class StudentServiceTest {
|
public class StudentServiceTest {
|
||||||
|
|
||||||
private static final String ENDPOINT = "http://localhost:8888/StudentDirectory/student/get";
|
private static final String ENDPOINT = "http://localhost:8888/student/get";
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenRequestForStudents_whenPageIsOne_expectContainsNames() {
|
public void givenRequestForStudents_whenPageIsOne_expectContainsNames() {
|
||||||
|
|
Loading…
Reference in New Issue