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