mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
12 lines
200 B
Go
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) {}
|