package tests

import (
	
	
)

type failTestWriter struct {
	t *testing.T
}

func ( failTestWriter) ( []byte) (int, error) {
	.t.Fatal(string())
	return len(), nil
}

func ( failTestWriter) () error {
	return nil
}

type fakeClock struct {
	now time.Time
}

func ( *fakeClock) () time.Time {
	return .now
}

func (*fakeClock) (time.Duration) *time.Ticker {
	panic("not reachable")
}