bitcoin-s/core-test
Chris Stewart 3b8d6af4c6 2019 03 20 chainparams add mining consensus rules (#388)
* Add mining parameters to bitcoin-s chain params

* Add allowMinDifficultyBlocks and noRetargeting to ChainParams

* Add basic unit tests for new chain params vals

* Add powLimit tests

* Address torkel's code review
2019-03-21 09:10:18 -05:00
..
src/test 2019 03 20 chainparams add mining consensus rules (#388) 2019-03-21 09:10:18 -05:00
build.sbt Added scalafmt and ran it (#264) 2018-12-09 14:43:31 -05:00
README.md Add doc on generating coverage report (#380) 2019-03-14 11:39:45 -05:00

Download

Running tests

To run the entire core test suite:

chris@chris:~/dev/bitcoins-core$ sbt coreTest/test
# lots of output, should end up with something like this
[info] All tests passed.
[info] Passed: Total 1008, Failed 0, Errors 0, Passed 1008
[success] Total time: 38 s, completed Dec 23, 2018 4:39:58 PM

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.