package openwrt import ( "testing" ) func TestUciAdd(t *testing.T) { // Return 0 run ! res := UciAdd("wireless", "test") if res.ReturnCode != 0 { t.Error(res.Stderr) } }