Skip to content

Commit

Permalink
intentionally added uncovered parts in the SUT
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Jan 21, 2021
1 parent 22bdcf4 commit 947ab2c
Showing 1 changed file with 8 additions and 1 deletion.
@@ -1,7 +1,14 @@
package com.examples.myproject;

public class App {
public String sayHello(String name) {
if (name == null)
return "Hello";
else
return "Hello " + name;
}

public String sayHello() {
return "Hello";
return sayHello(null);
}
}

0 comments on commit 947ab2c

Please sign in to comment.