Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
216 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: testClass
  3. # key: tc
  4. # --
  5. import junit.framework.*;
  6. import junit.textui.*;
  7. public class Test${1:Class} extends TestCase {
  8. protected void setUp() {
  9. $0
  10. }
  11. }