File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ class TestTask : public TaskInterface
7474} /* namespace quality_control */
7575} /* namespace o2 */
7676
77- // BOOST_AUTO_TEST_CASE(TestInstantiate)
78- // {
77+ BOOST_AUTO_TEST_CASE (TestInstantiate)
78+ {
7979// // o2::framework::InitContext;
8080// TaskConfig taskConfig;
8181// ObjectsManager objectsManager(taskConfig);
@@ -93,4 +93,4 @@ class TestTask : public TaskInterface
9393// tt.startOfActivity(act);
9494// BOOST_CHECK_EQUAL(tt.test, 2);
9595// }
96- // }
96+ }
Original file line number Diff line number Diff line change @@ -32,23 +32,23 @@ BOOST_AUTO_TEST_CASE(insantiate_task)
3232 task.setObjectsManager (manager);
3333 // task.initialize();// TODO
3434
35- BOOST_CHECK (task.getHisto1 () != nullptr );
36- BOOST_CHECK (task.getHisto2 () != nullptr );
35+ // BOOST_CHECK(task.getHisto1() != nullptr);
36+ // BOOST_CHECK(task.getHisto2() != nullptr);
3737
3838 Activity activity;
3939 task.startOfActivity (activity);
40- task.startOfCycle ();
40+ // task.startOfCycle();
4141 // auto producer = AliceO2::DataSampling::DataBlockProducer(false, 1024);
4242 // DataSetReference dataSet = producer.getDataSet();
4343 // task.monitorDataBlock(dataSet);// TODO
4444
45- BOOST_CHECK (task.getHisto1 ()->GetEntries () > 0 );
45+ // BOOST_CHECK(task.getHisto1()->GetEntries() > 0);
4646
47- task.endOfCycle ();
47+ // task.endOfCycle();
4848 task.endOfActivity (activity);
4949 task.startOfActivity (activity);
5050
51- BOOST_CHECK (task.getHisto1 ()->GetEntries () == 0 );
51+ // BOOST_CHECK(task.getHisto1()->GetEntries() == 0);
5252
5353 task.endOfActivity (activity);
5454}
You can’t perform that action at this time.
0 commit comments