mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
testing: update documentation to match current coding style
R=rsc, r CC=golang-dev https://golang.org/cl/823045
This commit is contained in:
parent
094732f7eb
commit
3fbe7f4f41
3 changed files with 10 additions and 10 deletions
|
|
@ -224,11 +224,11 @@ func (s *CheckEqualError) String() string {
|
|||
//
|
||||
// func TestOddMultipleOfThree(t *testing.T) {
|
||||
// f := func(x int) bool {
|
||||
// y := OddMultipleOfThree(x);
|
||||
// y := OddMultipleOfThree(x)
|
||||
// return y%2 == 1 && y%3 == 0
|
||||
// }
|
||||
// if err := quick.Check(f, nil); err != nil {
|
||||
// t.Error(err);
|
||||
// t.Error(err)
|
||||
// }
|
||||
// }
|
||||
func Check(function interface{}, config *Config) (err os.Error) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue