Skip to content

Commit

Permalink
Resolved codacy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Sladyn committed Jun 17, 2019
1 parent f3e92cc commit 8395796
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -737,13 +737,17 @@ public void shouldFindAllJavaIssues() {
shouldFindIssuesOfTool(2 + 1 + 1 + 2, new Java(), "javac.txt", "gradle.java.log", "ant-javac.txt", "hpi.txt");
}

/** Runs the Kotlin parser on several output files that contain 4 issues. */
/**
* Runs the Kotlin parser on several output files that contain 4 issues.
*/
@Test
public void shouldFindAllKotlinIssues(){
shouldFindIssuesOfTool(4,new Kotlin(),"kotlin.txt");
public void shouldFindAllKotlinIssues() {
shouldFindIssuesOfTool(4, new Kotlin(), "kotlin.txt");
}

/** Runs the CssLint parser on an output file that contains 51 issues. */
/**
* Runs the CssLint parser on an output file that contains 51 issues.
*/
@Test
public void shouldFindAllCssLintIssues() {
shouldFindIssuesOfTool(51, new CssLint(), "csslint.xml");
Expand Down

0 comments on commit 8395796

Please sign in to comment.