Files
p2p-rendering-computation/server/docker/docker_test.go
2021-04-11 01:26:55 +04:00

17 lines
184 B
Go

package docker
import (
"fmt"
"testing"
)
func TestDocker(t *testing.T) {
resp,err := BuildRunContainer(2,"false")
if err != nil {
t.Error(err)
}
fmt.Print(resp.VNCPort)
}