blob: f0380b9428519f3f728dab20869d7e082b4e76e2 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/components.gni")
import("//build/test.gni")
test("inspect_service_cpp_unittests") {
sources = [
"reader_unittests.cc",
"service_unittests.cc",
]
deps = [
"//sdk/fidl/fuchsia.inspect",
"//sdk/lib/inspect/service/cpp",
"//sdk/lib/inspect/testing/cpp",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//third_party/googletest:gmock",
"//zircon/system/ulib/inspect",
]
}
fuchsia_unittest_package("inspect_service_cpp_tests") {
deps = [ ":inspect_service_cpp_unittests" ]
manifest = "meta/inspect_service_cpp_unittests.cmx"
}