mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
14 lines
212 B
Go
14 lines
212 B
Go
package status
|
|
|
|
import "testing"
|
|
|
|
func TestSet(t *testing.T) {
|
|
|
|
// only test for panics
|
|
SetCurrentSecurityLevel(0)
|
|
SetSelectedSecurityLevel(0)
|
|
SetThreatLevel(0)
|
|
SetPortmasterStatus(0)
|
|
SetGate17Status(0)
|
|
|
|
}
|