blob: 1cbffff6b4fe374f7adef5de977e64da35b43c8d [file] [log] [blame] [edit]
# 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")
import("//build/testing/environments.gni")
group("tests") {
testonly = true
deps = [
":pkg",
"..:pkg",
]
}
test("intl_services_test") {
sources = [ "intl_services_test.cc" ]
deps = [
"//sdk/fidl/fuchsia.intl",
"//sdk/fidl/fuchsia.settings",
"//sdk/lib/sys/cpp/testing:integration_fixture",
"//src/lib/fostr/fidl/fuchsia.intl",
"//src/lib/fostr/fidl/fuchsia.settings",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
]
}
fuchsia_unittest_package("pkg") {
package_name = "intl_services_tests"
component_name = "intl_services_test"
manifest = "meta/intl_services_test.cmx"
deps = [
":intl_services_test",
"..:pkg",
"//garnet/bin/setui:setui_service",
"//src/sys/device_settings:device_settings_manager",
"//src/sys/stash",
]
test_specs = {
log_settings = {
max_severity = "ERROR"
}
}
}