Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 606 Bytes

File metadata and controls

26 lines (20 loc) · 606 Bytes

Running the tests

Install Bazel

Running the tests requires Bazel, see here for installation instructions.

Sample Commands

From any directory, run all tests found in the workspace:

bazel test //src/...

Run all tests in current directory

# E.g. in directory `...test/java/com/google/devtools/cdbg/debuglets/java`
bazel test :all

Run individual test in current directory:

# E.g. in directory `...test/java/com/google/devtools/cdbg/debuglets/java`
bazel test :YamlConfigParserTest