golang-github-google-gofuzz-dev

Fuzz testing for go
  https://github.com/google/gofuzz
  0
  no reviews



Gofuzz is a library for populating go objects with random values.

this is useful for testing:

* do your project's objects really serialize/unserialize correctly in all
cases?
* is there an incorrectly formatted object that will cause your project to
panic?
import with import "github.com/google/gofuzz"

this package contains the source.