summaryrefslogtreecommitdiff
path: root/src/Q4/RandomSumGameTest.java
blob: 3a5e26c75c1d16424befbc572d5adec67e6de6d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package ca.mokhan.test;

import Q4.*;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class RandomSumGameTest extends TestCase {
  private RandomSumGame subject;

  public RandomSumGameTest(String testName) {
    super(testName);
    this.subject = new RandomSumGame();
  }

  public static Test suite() {
    return new TestSuite(RandomSumGameTest.class);
  }

  public void test_play() {
    subject.play();
    assertTrue(true);
  }
}