blob: e6a40f22ce071fb7691234f260fe51cff77f8ecd [file] [log] [blame]
// Copyright {{COPYRIGHT_YEAR}} 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.
// {{PROJECT_NAME}} test component manifest.
// For information on manifest format and features,
// see https://fuchsia.dev/fuchsia-src/concepts/components/component_manifests.
//
// This file was generated by the `fx create component-v2` command. The template
// is located at `//tools/create/templates/component-v2/meta/$_test.cml.tmpl-cpp`.
// If something is broken, consider authoring a fix.
{
program: {
binary: "test/{{PROJECT_NAME}}_unittests",
},
use: [
{ runner: "gtest_runner" },
],
expose: [
// The Fuchsia Test Framework expects this service to be exposed from the
// test component. The gtest_runner provides this service.
{
protocol: "/svc/fuchsia.test.Suite",
from: "self",
},
],
}