Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
Created the test class TicketDispenserTest and added a trivial test.
Browse files Browse the repository at this point in the history
  • Loading branch information
wubin28 committed Jun 11, 2014
1 parent 707366d commit 73e265a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Expand Up @@ -7,7 +7,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<version>4.11</version>
<type>jar</type>
<scope>test</scope>
</dependency>
Expand Down
@@ -0,0 +1,12 @@
package tddmicroexercises.turnticketdispenser;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class TicketDispenserTest {
@Test
public void a_trivial_test() {
assertEquals(5, 2 + 3);
}
}

0 comments on commit 73e265a

Please sign in to comment.