Skip to content

Commit

Permalink
adding some code to test the coverage in Sonar
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <jeromy@swirldslabs.com>
  • Loading branch information
jeromy-cannon committed Oct 18, 2023
1 parent d62eb79 commit 376b3a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,9 @@ public class InvalidStateSignatureValidator implements Validator {
public Future<ValidationResult> validate(ValidationContext context) {
return null;
}

public void deleteMe() {
// this is a dummy method to test the plugin
System.out.println("Hello World!");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,9 @@ public class FullstackPlugin implements Plugin<Project> {
public void apply(Project project) {
// currently no implementation is needed
}

public void deleteMe() {
// this is a dummy method to test the plugin
System.out.println("Hello World!");
}
}

0 comments on commit 376b3a5

Please sign in to comment.