@@ -26,33 +26,33 @@ def test_all_code_paths(self):
2626 "aggregates_file_details_post_v1" : falcon .aggregates_file_details_post_v1 (),
2727 "combined_file_details_get_v1" : falcon .query_file_details (),
2828 "entities_file_details_get_v1" : falcon .get_file_details (ids = "1234567890" ),
29- # "entities_file_details_patch_v1": falcon.update_file_details(body={} ),
29+ "entities_file_details_patch_v1" : falcon .update_file_details (id = "12345678" ),
3030 "entities_files_bulk_download_post_v1" : falcon .bulk_download_files (body = {}),
3131 "entities_files_download_get_v1" : falcon .download_existing_files (id = "1234567890" ),
3232 #"entities_files_upload_post_v1": falcon.CHECKTHIS_upload_file(),
3333 "entities_files_delete_v1" : falcon .delete_file_details (ids = "1234567890" ),
3434 "queries_file_details_get_v1" : falcon .query_file_detail_ids (),
35- "aggregates_notification_groups_post_v1" : falcon .get_notification_groups (body = { }),
35+ "aggregates_notification_groups_post_v1" : falcon .get_notification_groups (date_ranges = { "from" : "whenever" , "to" : "whenever" }),
3636 "aggregates_notification_groups_post_v2" : falcon .get_notification_groups_v2 (body = {}),
3737 "aggregates_slas_post_v1" : falcon .get_sla_aggregations (body = {}),
3838 "aggregates_templates_post_v1" : falcon .get_template_aggregations (body = {}),
3939 "entities_fields_get_v1" : falcon .get_fields (ids = ["1234567890" ]),
4040 "entities_notification_groups_get_v1" : falcon .get_notification_groups (ids = ["1234567890" ]),
41- "entities_notification_groups_post_v1" : falcon .create_notification_group (body = {} ),
41+ "entities_notification_groups_post_v1" : falcon .create_notification_group (name = "whatever" ),
4242 "entities_notification_groups_patch_v1" : falcon .update_notification_group (body = {}),
4343 "entities_notification_groups_delete_v1" : falcon .delete_notification_group (ids = ["1234567890" ]),
4444 "entities_notification_groups_post_v2" : falcon .create_notification_group_v2 (body = {}),
4545 "entities_notification_groups_patch_v2" : falcon .update_notification_group_v2 (body = {}),
4646 "entities_notification_groups_delete_v2" : falcon .delete_notification_group_v2 (ids = ["1234567890" ]),
4747 "entities_slas_get_v1" : falcon .get_slas (ids = "1234567890" ),
48- "entities_slas_post_v1" : falcon .create_sla (body = {} ),
48+ "entities_slas_post_v1" : falcon .create_sla (description = "whatever" ),
4949 "entities_slas_patch_v1" : falcon .update_sla (body = {}),
5050 "entities_slas_delete_v1" : falcon .delete_sla (ids = "1234567890" ),
5151 "entities_template_snapshots_get_v1" : falcon .get_template_snapshots (template_ids = "1234567890" ),
5252 "entities_templates_export_get_v1" : falcon .export_templates (ids = "1234567890" ),
5353 "entities_templates_import_post_v1" : falcon .import_template (file = "README.md" ),
5454 "entities_templates_get_v1" : falcon .get_templates (ids = "1234567890" ),
55- "entities_templates_post_v1" : falcon .create_template (body = {} ),
55+ "entities_templates_post_v1" : falcon .create_template (description = "whatever" ),
5656 "entities_templates_patch_v1" : falcon .update_template (body = {}),
5757 "entities_templates_delete_v1" : falcon .delete_templates (ids = "1234567890" ),
5858 "queries_fields_get_v1" : falcon .query_fields (),
@@ -67,7 +67,7 @@ def test_all_code_paths(self):
6767 "entities_cases_put_v2" : falcon .create_case (body = {}),
6868 "entities_cases_post_v2" : falcon .get_cases (ids = "1234567890" ),
6969 "entities_cases_patch_v2" : falcon .update_case_fields (body = {}),
70- "entities_event_evidence_post_v1" : falcon .add_case_event_evidence (body = {} ),
70+ "entities_event_evidence_post_v1" : falcon .add_case_event_evidence (id = "12345678" ),
7171 "queries_cases_get_v1" : falcon .query_case_ids ()
7272 }
7373 for key in tests :
0 commit comments