Skip to content

Instantly share code, notes, and snippets.

@britter
Last active December 16, 2015 10:49
Show Gist options
  • Save britter/5422750 to your computer and use it in GitHub Desktop.
Save britter/5422750 to your computer and use it in GitHub Desktop.
"Pure JUnit test" for a custom JFaces MenuManager
public class DynamicMenuTest {
private MenuManager menu;
@Before
public void setUp() {
menu = new DynamicMenu();
}
@Test
public void test() {
// do nothing, just check out if the @Before hook executes...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment