def test__init_acquisition_cycle(self):
     config = {}
     with self.assertRaises(NotImplementedException) as cm:
         BaseDataHandler._init_acquisition_cycle(config)
         ex = cm.exception
         # TODO: This is brittle as the message could change - do we need this check, or is getting the exception enough?
         self.assertEqual(ex.message, "ion.agents.data.handlers.base_data_handler.BaseDataHandler must implement '_init_acquisition_cycle'")
 def test__init_acquisition_cycle(self):
     config = {}
     with self.assertRaises(NotImplementedException) as cm:
         BaseDataHandler._init_acquisition_cycle(config)
         ex = cm.exception
         # TODO: This is brittle as the message could change - do we need this check, or is getting the exception enough?
         self.assertEqual(ex.message, "ion.agents.data.handlers.base_data_handler.BaseDataHandler must implement '_init_acquisition_cycle'")