Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Update comments in unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com>
  • Loading branch information
eamansour committed Aug 21, 2024
1 parent 8477993 commit 9c36b41
Showing 1 changed file with 0 additions and 56 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -490,9 +490,7 @@ public void testQueryWithRequestorNotSortedWithEmptyDBServiceReturnsOK() throws
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 0,
// "runs": [
// ]
Expand Down Expand Up @@ -526,9 +524,7 @@ public void testQueryWithRequestorNotSortedWithDBServiceWithOneRecordReturnsOK()
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 1,
// "runs": [
// {
Expand Down Expand Up @@ -568,9 +564,7 @@ public void testQueryWithRequestorNotSortedWithDBServiceTenRecordsReturnsOK() th
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [
// {
Expand Down Expand Up @@ -623,9 +617,7 @@ public void testQueryWithFromDateNotSortedWithDBServiceWithOneRecordReturnsOK()
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 1,
// "runs": [
// {
Expand Down Expand Up @@ -662,9 +654,6 @@ public void testQueryWithoutFromDateOrRunNameNotSortedWithDBServiceTenRecordsRet
servlet.init();
servlet.doGet(req,resp);

//Then...
// Expecting:

//Then...
assertThat(resp.getStatus()).isEqualTo(400);
assertThat(outStream.toString()).contains("GAL5010E: Error parsing the query parameters. from time is a mandatory field if no runname is supplied.");
Expand All @@ -690,9 +679,6 @@ public void testNoQueryWithDBServiceTenRecordsReturnsOK() throws Exception {
servlet.init();
servlet.doGet(req,resp);

//Then...
// Expecting:

//Then...
List<String> expectedRunNames = generateExpectedRunNames(mockInputRunResults);
String actualOutput = outStream.toString();
Expand Down Expand Up @@ -732,9 +718,7 @@ public void testQueryWithoutFromDateWithRunNameNotSortedWithDBServiceTenRecordsR
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 0,
// "runs": []
// }
Expand Down Expand Up @@ -771,9 +755,7 @@ public void testQueryWithFromDateAndRunnameNotSortedWithDBServiceTenRecordsRetur
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 0,
// "runs": []
// }
Expand Down Expand Up @@ -809,9 +791,7 @@ public void testQueryWithFromDateAndRunnameOutsideNotSortedWithDBServiceTenRecor
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 0,
// "runs": []
// }
Expand Down Expand Up @@ -844,9 +824,7 @@ public void testQueryWithRequestorNotSortedWithDBServiceTenRecordsPageSizeFiveRe
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 5,
// "numPages": 2,
// "amountOfRuns": 10,
// "runs": [
// {
Expand Down Expand Up @@ -902,9 +880,7 @@ public void testQueryWithRequestorNotSortedWithDBServiceTenRecordsPageSizeFivePa
//Then...
// Expecting:
// {
// "pageNum": 2,
// "pageSize": 5,
// "numPages": 2,
// "amountOfRuns": 10,
// "runs": [
// {
Expand Down Expand Up @@ -963,9 +939,7 @@ public void testQueryWithRequestorNotSortedWithDBServiceTwentyRecordsPageSizeFiv
//Then...
// Expecting:
// {
// "pageNum": 3,
// "pageSize": 5,
// "numPages": 4,
// "amountOfRuns": 20,
// "runs": [
// {
Expand Down Expand Up @@ -1299,9 +1273,7 @@ public void testQueryWithFromDateAndToDateNotSortedWithDBServiceTenRecordsReturn
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1342,9 +1314,7 @@ public void testQueryWithFromDateAndToDatetSortedToDescendingWithDBServiceTenRec
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1387,9 +1357,7 @@ public void testQueryWithFromDateAndToDatetSortedToAscendingWithDBServiceTenReco
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1432,9 +1400,7 @@ public void testQueryWithFromDateAndToDatetSortedResultDescendingWithDBServiceTe
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1477,9 +1443,7 @@ public void testQueryWithFromDateAndToDateResultSortedResultAscendingWithDBServi
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1518,9 +1482,7 @@ public void testQueryWithFromDateSortedTestclassDescendingWithDBServiceTenRecord
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1562,9 +1524,7 @@ public void testQueryWithFromDateAndToDateResultSortedTestclassAscendingWithDBSe
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1602,9 +1562,7 @@ public void testQueryWithFromDateAndToDateBadSortWithDBServiceTenRecordsReturnsE
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1662,9 +1620,7 @@ public void testQueryWithFromDateBadSortKeyWithDBServiceTenRecordsReturnsOkUnsor
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1706,9 +1662,7 @@ public void testQueryWithFromResultNotSortedWithDBServiceTenRecordsReturnsOK() t
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1750,9 +1704,7 @@ public void testQueryWithFromtestNameNotSortedWithDBServiceTenRecordsReturnsOK()
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1794,9 +1746,7 @@ public void testQueryWithFromBundleNotSortedWithDBServiceTenRecordsReturnsOK() t
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1838,9 +1788,7 @@ public void testQueryWithFromRunIdNotSortedWithDBServiceTenRecordsReturnsOK() th
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1881,9 +1829,7 @@ public void testQueryWithFromRunIdsNotSortedWithDBServiceTenRecordsReturnsOK() t
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down Expand Up @@ -1924,9 +1870,7 @@ public void testQueryWithRunIdsNotSortedWithDBServiceTenRecordsReturnsOK() throw
//Then...
// Expecting:
// {
// "pageNum": 1,
// "pageSize": 100,
// "numPages": 1,
// "amountOfRuns": 10,
// "runs": [...]
// }
Expand Down

0 comments on commit 9c36b41

Please sign in to comment.