mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
remove redundant throws from test-ng templates
x
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
@org.testng.annotations.BeforeMethod
|
||||
public void setUp() throws Exception {
|
||||
public void setUp() {
|
||||
${BODY}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
@org.testng.annotations.AfterMethod
|
||||
public void tearDown() throws Exception {
|
||||
public void tearDown() {
|
||||
${BODY}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
@org.testng.annotations.Test
|
||||
public void test${NAME}() throws Exception {
|
||||
public void test${NAME}() {
|
||||
${BODY}
|
||||
}
|
||||
Reference in New Issue
Block a user