DefaultApi unit test stubs
| 17 | |
| 18 | |
| 19 | class TestDefaultApi(unittest.TestCase): |
| 20 | """DefaultApi unit test stubs""" |
| 21 | |
| 22 | def setUp(self): |
| 23 | self.api = DefaultApi() # noqa: E501 |
| 24 | |
| 25 | def tearDown(self): |
| 26 | pass |
| 27 | |
| 28 | def test_chart_data_filter_region_filter_copy_region_copy_resolution_timestamp_json_get( |
| 29 | self, |
| 30 | ): |
| 31 | """Test case for chart_data_filter_region_filter_copy_region_copy_resolution_timestamp_json_get |
| 32 | |
| 33 | Zeitreihendaten # noqa: E501 |
| 34 | """ |
| 35 | pass |
| 36 | |
| 37 | def test_chart_data_filter_region_index_resolution_json_get(self): |
| 38 | """Test case for chart_data_filter_region_index_resolution_json_get |
| 39 | |
| 40 | Indizes # noqa: E501 |
| 41 | """ |
| 42 | pass |
| 43 | |
| 44 | def test_table_data_filter_region_filter_copy_region_copy_quarterhour_timestamp_json_get( |
| 45 | self, |
| 46 | ): |
| 47 | """Test case for table_data_filter_region_filter_copy_region_copy_quarterhour_timestamp_json_get |
| 48 | |
| 49 | Zeitreihendaten # noqa: E501 |
| 50 | """ |
| 51 | pass |
| 52 | |
| 53 | |
| 54 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected