mirror of
https://github.com/safing/portbase
synced 2025-09-01 10:09:50 +00:00
11 lines
155 B
Go
11 lines
155 B
Go
package query
|
|
|
|
import "testing"
|
|
|
|
func TestGetOpName(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if getOpName(254) != "[unknown]" {
|
|
t.Error("unexpected output")
|
|
}
|
|
}
|