Skip to content

Commit

Permalink
Added Index.java
Browse files Browse the repository at this point in the history
  • Loading branch information
febg-codecov committed Sep 5, 2019
1 parent b336076 commit e1de6c6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/java/codecov/Index.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package codecov;

public class Index {
public boolean uncovered_if(boolean a) {
if (a)
return false;
else
return true;
}

public boolean fully_covered() {
return true;
}

public boolean uncovered() {
return true;
}
}

0 comments on commit e1de6c6

Please sign in to comment.