From e1de6c6511f2b2f226b011c9df0824b796555fc8 Mon Sep 17 00:00:00 2001 From: Felipe Date: Wed, 4 Sep 2019 21:01:43 -0700 Subject: [PATCH] Added Index.java --- src/main/java/codecov/Index.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/main/java/codecov/Index.java diff --git a/src/main/java/codecov/Index.java b/src/main/java/codecov/Index.java new file mode 100644 index 00000000..071e63f5 --- /dev/null +++ b/src/main/java/codecov/Index.java @@ -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; + } +}