Listing 2: Tests the implementation of Coffee Machine Design 4

// tcoffee4.cpp

#include "coffee4.h"

main()
{
    CoffeeMachine m;
    while (m.oneAction())
        ;
}
//End of File