Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class CollapsibleIfStatementCheckTest {

@Test
void test() throws Exception {
void test() {
CheckVerifier.verify(new CollapsibleIfStatementCheck(), "CollapsibleIfStatementCheck.php");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class TooManyLinesInFileCheckTest {
private String fileName = "TooManyLinesInFileCheck.php";

@Test
void defaultValue() throws Exception {
void defaultValue() {
CheckVerifier.verifyNoIssue(check, fileName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class EmptyAlternativeCheckTest {

@Test
void test() throws Exception {
void test() {
CheckVerifier.verify(new EmptyAlternativeCheck(), "regex/EmptyAlternativeCheck.php");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class ImpossibleBoundariesCheckTest {

@Test
void test() throws Exception {
void test() {
CheckVerifier.verify(new ImpossibleBoundariesCheck(), "regex/ImpossibleBoundariesCheck.php");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class SingleCharCharacterClassCheckTest {

@Test
void test() throws Exception {
void test() {
CheckVerifier.verify(new SingleCharCharacterClassCheck(), "regex/SingleCharCharacterClassCheck.php");
}
}
Loading