12 lines
148 B
Go
12 lines
148 B
Go
package status
|
|
|
|
import "testing"
|
|
|
|
func TestSet(t *testing.T) {
|
|
|
|
// only test for panics
|
|
// TODO: write real tests
|
|
setSelectedSecurityLevel(0)
|
|
|
|
}
|