mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 09:52:09 +01:00
1ff0dee934
* Reshuffle package location of P2P messages Previously the companion objects for P2P messages and the actual messages were in different pacakges. This made them more awkward to use than necessary. We also clean up some Scaladocs in this commit. * Move all P2P messages to core |
||
---|---|---|
.. | ||
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.