package operaSystem import "testing" func TestOperaSystem_Zip(t *testing.T) { err := operaSystem.Zip("test.zip", "zip.go") if err != nil { t.Error(err) } } func TestOperaSystem_Unzip(t *testing.T) { err := operaSystem.Unzip("test.zip", "test") if err != nil { t.Error(err) } }