runAllBillMethods Runs all the bill endpoints against the API
()
| 19 | * |
| 20 | */ |
| 21 | public static void runAllBillMethods() { |
| 22 | getAllBills(); |
| 23 | getAllBillsForCongress(); |
| 24 | getAllBillsForCongressionalChamber(); |
| 25 | getABillsDetails(); |
| 26 | getABillsActions(); |
| 27 | getABillsAmendments(); |
| 28 | getABillsCommittees(); |
| 29 | getABillsCosponsors(); |
| 30 | getABillsRelatedBills(); |
| 31 | getABillsSubjects(); |
| 32 | getABillsSummaries(); |
| 33 | getABillsTexts(); |
| 34 | getABillsTitles(); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * getAllBills |
no test coverage detected