Skip to content

Instantly share code, notes, and snippets.

@krisskross
Created May 18, 2012 17:08
Show Gist options
  • Save krisskross/2726457 to your computer and use it in GitHub Desktop.
Save krisskross/2726457 to your computer and use it in GitHub Desktop.
@RunWith(JUnitRunner.class)
public class JUnitRunnerDemoTest {
@Test
public void demoFixtureArguments(FixtureExample one, FixtureExample two, FixtureExample three) {
System.out.println("demonstrateFixtureArguments(" + one + ", " + two + ", " + three + ")");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment