listed templates can be selected by space, move the tests to community

This commit is contained in:
peter
2012-02-15 16:28:23 +01:00
parent fe13245171
commit 51647b8898
20 changed files with 609 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
import java.util.List;
public class LiveTemplateTest {
void one() {
List<A.B<String>> list;
for (A.B<String> stringB : <selection>list</selection><caret>) {
}
}
}
class A {
static interface B<T> {}
}