mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 09:52:09 +01:00
.. | ||
src/test | ||
build.sbt | ||
README.md |
Running tests
To run the entire core
test suite:
chris@chris:~/dev/bitcoins-core$ bloop test coreTest
Coverage
To produce a report that quantifies how much of our code is covered by tests:
sbt
> coverage
> coreTest/test
> core/coverageReport
This generates three different reports: Cobertura, XML and HTML formats.
See the output of your sbt shell to find the location of them.
Open up the HTML file in your browser. You'll now see code coverage
of all files in core
project.