Add go fuzzer in preparation for testing. Also gofmt a few files that needed it.

This commit is contained in:
Daniel Smith
2014-07-25 17:58:36 -07:00
parent 8a5cc87df8
commit aa92dd7fb2
6 changed files with 524 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ func (s StringSet) HasAll(items ...string) bool {
// IsSuperset returns true iff s1 is a superset of s2.
func (s1 StringSet) IsSuperset(s2 StringSet) bool {
for item, _ := range s2 {
for item := range s2 {
if !s1.Has(item) {
return false
}