remove redundant throws from test-ng templates

x
This commit is contained in:
Dmitry Batkovich
2017-10-24 17:47:04 +03:00
parent 413e421e99
commit 2c1cf5d8c9
3 changed files with 3 additions and 3 deletions
@@ -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}
}