Create initial version of new package status

This commit is contained in:
Daniel
2018-08-14 17:09:18 +02:00
parent bdeddc41f9
commit 9cb0641f19
7 changed files with 258 additions and 0 deletions

16
status/get_test.go Normal file
View File

@@ -0,0 +1,16 @@
package status
import "testing"
func TestGet(t *testing.T) {
// only test for panics
GetCurrentSecurityLevel()
GetSelectedSecurityLevel()
GetThreatLevel()
GetPortmasterStatus()
GetGate17Status()
option := GetConfigByLevel("invalid")
option()
}