safing-portmaster/status/get_test.go
2019-01-29 16:20:06 +01:00

18 lines
308 B
Go

package status
import "testing"
func TestGet(t *testing.T) {
// only test for panics
// TODO: write real tests
ActiveSecurityLevel()
SelectedSecurityLevel()
PortmasterStatus()
Gate17Status()
option := ConfigIsActive("invalid")
option(0)
option = ConfigIsActiveConcurrent("invalid")
option(0)
}