blob: bf571215a141387aeda054e42ef94a122dae2414 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Package testing provides utilities for testing smith clients and protocols.
package testing
// T provides the testing interface for capturing failures with testing assert
// utilities.
type T interface {
Error(args ...interface{})
Errorf(format string, args ...interface{})
Helper()
}
|