Skip to content

Commit

Permalink
first file
Browse files Browse the repository at this point in the history
  • Loading branch information
grum committed Dec 24, 2011
1 parent a9fc56a commit 2996c4c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/nl/grum/microcraft/Event.java
@@ -0,0 +1,4 @@
package nl.grum.microcraft;

public class Event {
}
22 changes: 22 additions & 0 deletions src/test/java/nl/grum/microcraft/EventTest.java
@@ -0,0 +1,22 @@
package nl.grum.microcraft;

import static org.hamcrest.CoreMatchers.notNullValue;
import static org.junit.Assert.assertThat;

import org.junit.Before;
import org.junit.Test;

public class EventTest {

private Event subject;

@Before
public void setup() {
subject = new Event();
}

@Test
public void stupidTest() {
assertThat(subject, notNullValue());
}
}

0 comments on commit 2996c4c

Please sign in to comment.