From 3c2faf42c32a15e07377f4118475a3aa6a94f68b Mon Sep 17 00:00:00 2001 From: "J. Mark Pim" Date: Sun, 27 Aug 2017 16:25:11 +0100 Subject: [PATCH] Adding untested method --- Parse/HCL/Parser.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Parse/HCL/Parser.cs b/Parse/HCL/Parser.cs index 7646663..68719d2 100644 --- a/Parse/HCL/Parser.cs +++ b/Parse/HCL/Parser.cs @@ -483,6 +483,18 @@ private void Unscan() { _n = 1; } + + public void TestCoverage() + { + var x = 1; + if (x < _n){ + return; + } + x += 10; + if (x >= _n) { + return; + } + } } }