blob: af27f06bb6b93965fde28e4636e7d615c0768be6 [file] [log] [blame]
Damien Neil26451c02019-12-19 14:17:21 -08001// 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
5package textfuzz
6
7import (
Damien Neil26451c02019-12-19 14:17:21 -08008 "testing"
Damien Neil75f53c52019-12-20 10:33:37 -08009
10 "google.golang.org/protobuf/internal/fuzztest"
Damien Neil26451c02019-12-19 14:17:21 -080011)
12
13func Test(t *testing.T) {
Damien Neil75f53c52019-12-20 10:33:37 -080014 fuzztest.Test(t, Fuzz)
Damien Neil26451c02019-12-19 14:17:21 -080015}