From 1e746f99a9d824e1b3b8de63bc258f85cde01ec7 Mon Sep 17 00:00:00 2001 From: Gabriel Schine <thatguy@google.com> Date: Mon, 13 May 2019 20:18:49 +0000 Subject: [PATCH] [modular] Add src/modular/tests directory & skeleton README.md Change-Id: Ie192ad3f1e6734a50cc5e125ac42420be9fae39d --- src/modular/BUILD.gn | 3 +++ src/modular/tests/BUILD.gn | 10 ++++++++++ src/modular/tests/README.md | 18 ++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 src/modular/tests/BUILD.gn create mode 100644 src/modular/tests/README.md diff --git a/src/modular/BUILD.gn b/src/modular/BUILD.gn index 5b5da56487e..3244dd5b96b 100644 --- a/src/modular/BUILD.gn +++ b/src/modular/BUILD.gn @@ -13,5 +13,8 @@ group("modular") { group("tests") { testonly = true + deps = [ + "tests", # tests/ directory + ] data_deps = [] } diff --git a/src/modular/tests/BUILD.gn b/src/modular/tests/BUILD.gn new file mode 100644 index 00000000000..5ca2d0f641d --- /dev/null +++ b/src/modular/tests/BUILD.gn @@ -0,0 +1,10 @@ +# 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. + +group("tests") { + testonly = true + deps = [ + # Add individual test packages here. + ] +} diff --git a/src/modular/tests/README.md b/src/modular/tests/README.md new file mode 100644 index 00000000000..52e0da95aec --- /dev/null +++ b/src/modular/tests/README.md @@ -0,0 +1,18 @@ +# Integration tests + +Integration tests are written against client-facing FIDL services exposed by +Modular. They make use of the Modular Test Harness (TODO: link). + +## Writing a new test + +TODO + +## Running tests + +### Running a single test + +TODO + +### Running all tests + +TODO -- GitLab