test_timeout_test.go 147 B

12345678910111213
  1. package TestCode
  2. import "testing"
  3. func TestDownloadTest(t *testing.T) {
  4. err := DownloadTest()
  5. if err != nil {
  6. t.Fatal(err)
  7. }
  8. select {}
  9. }