Skip to content

Commit f34ff69

Browse files
committed
updated with a test for an issue 78
1 parent 5e6f57e commit f34ff69

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test-complete/src/test/java/com/marklogic/javaclient/TestBulkSearchWithStringQueryDef.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,10 @@ public void testBulkSearchSQDwithDifferentPageSizes() {
173173
assertEquals("Total number of estimated results:",101,page.getTotalSize());
174174
assertEquals("Total number of estimated pages :",101,page.getTotalPages());
175175
// till the issue #78 get fixed
176-
assertFalse("Is this First page :",page.isFirstPage());//this is bug
176+
System.out.println("Is this First page :"+page.isFirstPage()+page.getPageNumber());//this is bug
177+
System.out.println("Is this Last page :"+page.isLastPage());
178+
System.out.println("Is this First page has content:"+page.hasContent());
179+
assertTrue("Is this First page :",page.isFirstPage());//this is bug
177180
assertFalse("Is this Last page :",page.isLastPage());
178181
assertTrue("Is this First page has content:",page.hasContent());
179182
// Need the Issue #75 to be fixed

0 commit comments

Comments
 (0)