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 @@ -29,7 +29,7 @@ class CharacterBeforeOpeningPHPTagCheckTest {
private static final String TEST_DIR = "CharacterBeforeOpeningPHPTagCheck/";

@Test
void ok() throws Exception {
void ok() {
CheckVerifier.verifyNoIssue(check, TEST_DIR + "ok.php");
}

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

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

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

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

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

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

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

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

Expand Down
Loading