aboutsummaryrefslogtreecommitdiff
path: root/test/cxxtest/sample/mock/roll.cpp
blob: 20ea967af396bd1b9424213521d9fe2d2adb9620 (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;
}