mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-01-19 05:43:51 +01:00
06e5b6b450
* Add BIP44 and BIP32 path support Make paths from strings, indexes/coins/chains, BIP32 children types. Derive xprivs and xpubs from paths. * Address code review on BIP44 from Chris * Rename children -> path, bip32child -> bip32node * update README with bip44 name changes |
||
---|---|---|
.. | ||
src/test | ||
build.sbt | ||
README.md |
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.