iptables-helper/pkg/utils/iptables/flag_test.go
2023-11-02 15:02:55 +08:00

13 lines
210 B
Go

package iptables
import (
"iptables-helper/pkg/utils/command"
"testing"
)
func TestFlag(t *testing.T) {
cmder := command.Commander{}
result := cmder.ExecuteWithResult("sudo iptables -S")
Parse(result)
}