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