Gregory Petrosyan
Gregory Petrosyan
So that people know that an error was found and the tests did not hang.
As there is code that can work with `a := []int{}`, but fail with `var a []int`. Can we treat empty slices as having something like `len = -1` during...
See e.g. [here](https://github.com/mgutz/dat/blob/v1/sqlx-runner/exec.go#L269).
``` $ git clone https://github.com/pybind/pybind11/ Cloning into 'pybind11'... ERROR: Repository not found. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the...
To have an ability to customuze e.g. checks or steps per-test, without altering global environment. Spin-off of #35.
May be a bit related to #36 (if we want to allow specifying the bitstream directly). Main use case is making sure important corner cases are covered without duplicating the...
Like `go test -fuzz` does, to have a semi-automatic regression test suite.
Thanks a lot for the module, really nice work! [cipher.BlockMode](https://golang.org/pkg/crypto/cipher/#BlockMode) explicitly allows `dst` and `src` to completely overlap, for in-place encryption/decryption. Unfortunately, this does not work in `ige`.