Files
Victor Starodub 5d497db34c Initial commit.
2016-02-28 03:16:29 +03:00

12 lines
200 B
Go

package benchmark
import (
"testing"
)
type DummyWriter struct{}
func (w DummyWriter) Write(data []byte) (int, error) { return len(data), nil }
func TestToSuppressNoTestsWarning(t *testing.T) {}