From fd03a98cada4065d6dec837328b2a81ca878abf1 Mon Sep 17 00:00:00 2001 From: Emmanuel BOUTON Date: Thu, 8 Oct 2020 22:15:21 +0200 Subject: [PATCH] add (no) code coverage --- main_test.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 main_test.go diff --git a/main_test.go b/main_test.go new file mode 100644 index 0000000..dcf6ff7 --- /dev/null +++ b/main_test.go @@ -0,0 +1,9 @@ +package main + +import "testing" + +func Test(t *testing.T) { + if false { + t.Error("Unsecure is coming ...") + } +}