コード例 #1
0
    def test_handle_component_data(self, handle_numeric_points, handle_calculated_points, get_logger):
        nightly_process_config = MagicMock()

        nightly_process = NightlyProcess(nightly_process_config)
        nightly_process.handle_component_data()

        handle_calculated_points.assert_called_with()
        handle_numeric_points.assert_called_with()