for (int i = 0; i < NUMBER_OF_QUICK_CONSUMERS; i++) {
m_quickConsumers[i].clearDonuts();
}
// Send a lot of donuts and check they are immediately received.
Donut sentDonut;
Donut receivedDonut;
for (int i = 0; i < EahTestUtils.NUMBER_OF_TESTS; i++) {
for (int j = 0; j < NUMBER_OF_SYNCHRONOUS_PROVIDERS; j++) {
sentDonut = m_synchronousProviders[j].sellDonut();
for (int k = 0; k < NUMBER_OF_QUICK_CONSUMERS; k++) {
receivedDonut = m_quickConsumers[k].getDonut();