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