bitcoin-s/core-test
Torkel Rogstad 1ff0dee934 Reshuffle package location of P2P messages (#495)
* 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
2019-06-06 09:13:32 -05:00
..
src/test Reshuffle package location of P2P messages (#495) 2019-06-06 09:13:32 -05:00
build.sbt Added scalafmt and ran it (#264) 2018-12-09 14:43:31 -05:00
README.md update readmes (#467) 2019-05-30 09:02:03 -05:00

Download

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.