blob: a84c4d3976eb29d1c773c7f0c40ca443b25a966c [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/test.gni")
import("//build/test/test_package.gni")
executable("fidlcat_test_bin") {
testonly = true
sources = [ "fidlcat_test.cc" ]
deps = [
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}
unittest_package("fidlcat_tests") {
deps = [ ":fidlcat_test_bin" ]
tests = [
{
name = "fidlcat_test_bin"
environments = basic_envs
},
]
}
group("tests") {
testonly = true
deps = [ ":fidlcat_tests" ]
}