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