Created
July 10, 2009 04:41
-
-
Save codahale/144245 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @RunWith(Enclosed.class) | |
| public class ThingTest { | |
| public static class An_Empty_Thing { | |
| private Thing thing; | |
| @Before | |
| public void setup() throws Exception { | |
| this.thing = new Thing(); | |
| } | |
| @Test | |
| public void itIsEmpty() { | |
| assertThat(thing.isEmpty(), is(true)); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment