aboutsummaryrefslogtreecommitdiff
path: root/test/cxxtest/sample/mock/roll.cpp
blob: 75ca31beddcb37dc354c5422646242f1cd38840d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include "Dice.h"

int main()
{
    Dice dice;
    printf( "First roll: %u\n", dice.roll() );
    printf( "Second roll: %u\n", dice.roll() );

    return 0;
}