|
|
||
|---|---|---|
| LICENSE | ||
| README.md | ||
| arbitrary.go | ||
| bool.go | ||
| bool_test.go | ||
| doc.go | ||
| runes.go | ||
| runes_test.go | ||
| string.go | ||
| string_test.go | ||
README.md
go-arbitrary
go-arbitrary is a Go library which provides tools for generating arbitrary data.
Example
src := rand.NewSource( time.Now().UTC().UnixNano() )
arb := arbitrary.New(src)
// Generate an arbitrary bool.
// Might be false, might be true.
bl := arb.Bool()
// Generate an arbitrary string.
s := arb.String()
Documention
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-arbitrary