summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mailru/easyjson/benchmark/dummy_test.go
blob: 3d928ca7cde31a1bbd1354f07fb5b901a2221b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
package benchmark

import (
	"testing"
)

type DummyWriter struct{}

func (w DummyWriter) Write(data []byte) (int, error) { return len(data), nil }

func TestToSuppressNoTestsWarning(t *testing.T) {}