Damien Neil | 26451c0 | 2019-12-19 14:17:21 -0800 | [diff] [blame] | 1 | // Copyright 2019 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | package textfuzz |
| 6 | |
| 7 | import ( |
Damien Neil | 26451c0 | 2019-12-19 14:17:21 -0800 | [diff] [blame] | 8 | "testing" |
Damien Neil | 75f53c5 | 2019-12-20 10:33:37 -0800 | [diff] [blame^] | 9 | |
| 10 | "google.golang.org/protobuf/internal/fuzztest" |
Damien Neil | 26451c0 | 2019-12-19 14:17:21 -0800 | [diff] [blame] | 11 | ) |
| 12 | |
| 13 | func Test(t *testing.T) { |
Damien Neil | 75f53c5 | 2019-12-20 10:33:37 -0800 | [diff] [blame^] | 14 | fuzztest.Test(t, Fuzz) |
Damien Neil | 26451c0 | 2019-12-19 14:17:21 -0800 | [diff] [blame] | 15 | } |