blob: 9541ba355dac611db65a364f84510e0123489ffe [file] [log] [blame]
// Copyright 2017 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.
#ifndef LIB_TEST_RUNNER_CPP_REPORTING_REPORTER_H_
#define LIB_TEST_RUNNER_CPP_REPORTING_REPORTER_H_
#include <vector>
#include <fuchsia/testing/runner/cpp/fidl.h>
#include "lib/component/cpp/startup_context.h"
using fuchsia::testing::runner::TestResultPtr;
namespace test_runner {
void ReportResult(std::string identity, component::StartupContext* context,
std::vector<TestResultPtr> results);
} // namespace test_runner
#endif // LIB_TEST_RUNNER_CPP_REPORTING_REPORTER_H_