mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
18 lines
308 B
Go
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)
|
|
|
|
}
|