Skip to content

Instantly share code, notes, and snippets.

@joeheyming
Created February 20, 2014 20:09
Show Gist options
  • Save joeheyming/9122166 to your computer and use it in GitHub Desktop.
Save joeheyming/9122166 to your computer and use it in GitHub Desktop.
java set* boilerplate code
@Test
public void testSomething() {
MyObj testobj = new MyObj();
testobj.setFoo('a');
testobj.setBar(123);
// ...
testobj.setBaz('z');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment