@@ -35,11 +35,11 @@ void BufferAccumulatorTester ::OK() {
3535 Fw::Buffer b (data, size, bufferID);
3636 buffers[i] = b;
3737 this ->invoke_to_bufferSendInFill (0 , buffers[i]);
38- this ->component . doDispatch ();
38+ this ->doDispatch ();
3939 ASSERT_from_bufferSendOutDrain_SIZE (i + 1 );
4040 ASSERT_from_bufferSendOutDrain (i, buffers[i]);
4141 this ->invoke_to_bufferSendInReturn (0 , buffers[i]);
42- this ->component . doDispatch ();
42+ this ->doDispatch ();
4343 ASSERT_from_bufferSendOutReturn (i, buffers[i]);
4444 }
4545
@@ -48,7 +48,7 @@ void BufferAccumulatorTester ::OK() {
4848
4949void BufferAccumulatorTester ::PartialDrainOK () {
5050 this ->sendCmd_BA_SetMode (0 , 0 , BufferAccumulator_OpState::ACCUMULATE);
51- this ->component . doDispatch ();
51+ this ->doDispatch ();
5252 ASSERT_CMD_RESPONSE_SIZE (1 );
5353 ASSERT_CMD_RESPONSE (0 , BufferAccumulator::OPCODE_BA_SETMODE, 0 ,
5454 Fw::CmdResponse::OK);
@@ -63,10 +63,10 @@ void BufferAccumulatorTester ::PartialDrainOK() {
6363 Fw::Buffer b (data, size, bufferID);
6464 buffers[i] = b;
6565 this ->invoke_to_bufferSendInFill (0 , buffers[i]);
66- this ->component . doDispatch ();
66+ this ->doDispatch ();
6767
6868 this ->sendCmd_BA_DrainBuffers (0 , 0 , 1 , BufferAccumulator_BlockMode::BLOCK);
69- this ->component . doDispatch ();
69+ this ->doDispatch ();
7070 ASSERT_EVENTS_BA_PartialDrainDone_SIZE (i + 1 );
7171 ASSERT_EVENTS_BA_PartialDrainDone (i, 1u );
7272 // + 1 for first BufferAccumulator_OpState::ACCUMULATE command; + 1 for
@@ -79,7 +79,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
7979 ASSERT_from_bufferSendOutDrain (i, buffers[i]);
8080
8181 this ->invoke_to_bufferSendInReturn (0 , buffers[i]);
82- this ->component . doDispatch ();
82+ this ->doDispatch ();
8383 ASSERT_from_bufferSendOutReturn (i, buffers[i]);
8484
8585 ASSERT_EVENTS_BA_PartialDrainDone_SIZE (i + 1 );
@@ -99,7 +99,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
9999 Fw::Buffer b (data, size, bufferID);
100100 buffers[i] = b;
101101 this ->invoke_to_bufferSendInFill (0 , buffers[i]);
102- this ->component . doDispatch ();
102+ this ->doDispatch ();
103103 ASSERT_FROM_PORT_HISTORY_SIZE (0 );
104104 }
105105
@@ -108,7 +108,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
108108 ASSERT_from_bufferSendOutDrain_SIZE (i);
109109
110110 this ->sendCmd_BA_DrainBuffers (0 , 0 , 1 , BufferAccumulator_BlockMode::BLOCK);
111- this ->component . doDispatch ();
111+ this ->doDispatch ();
112112 ASSERT_CMD_RESPONSE_SIZE (i + 1 );
113113 ASSERT_CMD_RESPONSE (i, BufferAccumulator::OPCODE_BA_DRAINBUFFERS, 0 ,
114114 Fw::CmdResponse::OK);
@@ -121,7 +121,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
121121 ASSERT_from_bufferSendOutDrain_SIZE (i + 1 );
122122 ASSERT_from_bufferSendOutDrain (i, buffers[i]);
123123 this ->invoke_to_bufferSendInReturn (0 , buffers[i]);
124- this ->component . doDispatch ();
124+ this ->doDispatch ();
125125 ASSERT_from_bufferSendOutReturn (i, buffers[i]);
126126
127127 ASSERT_EVENTS_BA_PartialDrainDone_SIZE (i + 1 );
@@ -140,7 +140,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
140140 Fw::Buffer b (data, size, bufferID);
141141 buffers[i] = b;
142142 this ->invoke_to_bufferSendInFill (0 , buffers[i]);
143- this ->component . doDispatch ();
143+ this ->doDispatch ();
144144 ASSERT_FROM_PORT_HISTORY_SIZE (0 );
145145 }
146146
@@ -152,7 +152,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
152152 ASSERT_EVENTS_BA_PartialDrainDone_SIZE (0 );
153153 this ->sendCmd_BA_DrainBuffers (0 , 0 , MAX_NUM_BUFFERS,
154154 BufferAccumulator_BlockMode::BLOCK);
155- this ->component . doDispatch ();
155+ this ->doDispatch ();
156156 ASSERT_CMD_RESPONSE_SIZE (0 );
157157
158158 for (U32 i = 0 ; i < MAX_NUM_BUFFERS; ++i) {
@@ -170,7 +170,7 @@ void BufferAccumulatorTester ::PartialDrainOK() {
170170 ASSERT_from_bufferSendOutDrain_SIZE (i + 1 );
171171 ASSERT_from_bufferSendOutDrain (i, buffers[i]);
172172 this ->invoke_to_bufferSendInReturn (0 , buffers[i]);
173- this ->component . doDispatch ();
173+ this ->doDispatch ();
174174 ASSERT_from_bufferSendOutReturn (i, buffers[i]);
175175 }
176176
0 commit comments