Files
p2p-rendering-computation/p2p/speedtest_test.go
2021-03-21 18:26:08 +04:00

16 lines
295 B
Go

package p2p
import (
"testing"
)
// To run this test ip_table.json must be populated
func TestServer_SpeedTest(t *testing.T) {
err := SpeedTest()
if err != nil {
t.Fatal(err)
}
//HumaidTest("http://localhost:8088/50")
//HumaidTest("http://ipv4.download.thinkbroadband.com/50MB.zip")
}