manually add dependency on go-getter

This commit is contained in:
Jingfang Liu
2018-08-14 14:20:19 -07:00
parent 70fb22cad6
commit b02f7775c5
270 changed files with 56453 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package testing
import (
"testing"
)
func TestT(t *testing.T) {
testTFunc(t) // Just verify this doesn't give a compiler error
}
func TestRuntimeT(t *testing.T) {
var _ T = new(RuntimeT) // Another compiler check
}
func testTFunc(t T) {}