summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/java-mode/testClass
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/snippets/java-mode/testClass')
-rw-r--r--.emacs.d/snippets/java-mode/testClass12
1 files changed, 12 insertions, 0 deletions
diff --git a/.emacs.d/snippets/java-mode/testClass b/.emacs.d/snippets/java-mode/testClass
new file mode 100644
index 0000000..b01a68f
--- /dev/null
+++ b/.emacs.d/snippets/java-mode/testClass
@@ -0,0 +1,12 @@
1# -*- mode: snippet -*-
2# name: testClass
3# key: tc
4# --
5import junit.framework.*;
6import junit.textui.*;
7
8public class Test${1:Class} extends TestCase {
9 protected void setUp() {
10 $0
11 }
12} \ No newline at end of file