blob: 3dcadb94eb1cd18523292fa9a0eaf3ff62408986 [file] [log] [blame]
import("//build/package.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
executable("agent_services_test") {
testonly = true
output_name = "agent_services_test"
sources = [
"agent_services_test.cc",
]
deps = [
"//peridot/public/lib/modular_test_harness/cpp:test_harness_fixture",
"//sdk/fidl/fuchsia.modular.testing",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//third_party/googletest:gtest_main",
]
}
test_package("agent_services_tests") {
tests = [
{
name = "agent_services_test"
environments = basic_envs
},
]
deps = [
":agent_services_test",
]
}