From da5ba44e6be0380572313eb11576c8fddc579711 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 28 Sep 2020 21:18:49 +0200 Subject: [PATCH] :seedling: Create empty test files to have a realistic coverage --- auth/auth_test.go | 1 + auth/basic/basic_test.go | 1 + auth/bypass/bypass_test.go | 1 + auth/ldap/ldap_test.go | 1 + internal/monitoring/monitoring_test.go | 1 + main_test.go | 1 + stream/srt/srt_test.go | 1 + stream/stream_test.go | 1 + 8 files changed, 8 insertions(+) create mode 100644 auth/auth_test.go create mode 100644 auth/basic/basic_test.go create mode 100644 auth/bypass/bypass_test.go create mode 100644 auth/ldap/ldap_test.go create mode 100644 internal/monitoring/monitoring_test.go create mode 100644 main_test.go create mode 100644 stream/srt/srt_test.go create mode 100644 stream/stream_test.go diff --git a/auth/auth_test.go b/auth/auth_test.go new file mode 100644 index 0000000..8832b06 --- /dev/null +++ b/auth/auth_test.go @@ -0,0 +1 @@ +package auth diff --git a/auth/basic/basic_test.go b/auth/basic/basic_test.go new file mode 100644 index 0000000..69c8169 --- /dev/null +++ b/auth/basic/basic_test.go @@ -0,0 +1 @@ +package basic diff --git a/auth/bypass/bypass_test.go b/auth/bypass/bypass_test.go new file mode 100644 index 0000000..6a83a40 --- /dev/null +++ b/auth/bypass/bypass_test.go @@ -0,0 +1 @@ +package bypass diff --git a/auth/ldap/ldap_test.go b/auth/ldap/ldap_test.go new file mode 100644 index 0000000..c9405cc --- /dev/null +++ b/auth/ldap/ldap_test.go @@ -0,0 +1 @@ +package ldap diff --git a/internal/monitoring/monitoring_test.go b/internal/monitoring/monitoring_test.go new file mode 100644 index 0000000..2f2912a --- /dev/null +++ b/internal/monitoring/monitoring_test.go @@ -0,0 +1 @@ +package monitoring diff --git a/main_test.go b/main_test.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/main_test.go @@ -0,0 +1 @@ +package main diff --git a/stream/srt/srt_test.go b/stream/srt/srt_test.go new file mode 100644 index 0000000..a0320e6 --- /dev/null +++ b/stream/srt/srt_test.go @@ -0,0 +1 @@ +package srt diff --git a/stream/stream_test.go b/stream/stream_test.go new file mode 100644 index 0000000..11541cc --- /dev/null +++ b/stream/stream_test.go @@ -0,0 +1 @@ +package stream