go-common/vendor/github.com/mailru/easyjson/benchmark/dummy_test.go

12 lines
200 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package benchmark
import (
"testing"
)
type DummyWriter struct{}
func (w DummyWriter) Write(data []byte) (int, error) { return len(data), nil }
func TestToSuppressNoTestsWarning(t *testing.T) {}