blob: a115cf0d4f828f606aa6e0ab08eedc94882ac5b2 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "testutils",
srcs = ["testutils.go"],
importpath = "go.skia.org/infra/go/testutils",
visibility = ["//visibility:public"],
deps = [
"//go/repo_root",
"//go/sktest",
"@com_github_google_uuid//:uuid",
"@com_github_stretchr_testify//mock",
"@com_github_stretchr_testify//require",
],
)
go_test(
name = "testutils_test",
srcs = ["testutils_test.go"],
embed = [":testutils"],
deps = [
"//go/sktest",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)