blob: 4b69025d22cd1d7d923ed294dac9f85a9bef8420 [file] [log] [blame]
// Copyright 2020 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.
{
include: [ "sdk/lib/diagnostics/syslog/client.shard.cml" ],
program: {
binary: "bin/base_resolver_bin_test",
},
capabilities: [
// This protocol needs to be defined here so it can be exposed from self below.
{ protocol: "fuchsia.test.Suite" },
],
use: [
// Use test runner which will expose `fuchsia.test.Suite` on test's behalf.
{ runner: "rust_test_runner" },
],
expose: [
// The Test Runner Framework expects this protocol to be exposed
// from the test component. The Rust test adapter provides this protocol.
{
protocol: "fuchsia.test.Suite",
from: "self",
},
],
}