CORDA-2729: Update integration testing instructions to explicitly mention node-driver dependency (#4873)

* adding a note so that it's clear what you have to include in gradle in order to use the driver classes

* responding to comments
This commit is contained in:
Ben Wyeth 2019-03-12 10:25:39 +00:00 committed by Tommy Lillehagen
parent dc83afb4de
commit b98ed6db23

View File

@ -126,3 +126,12 @@ about ``CashIssueAndPaymentFlow`` and ``CashPaymentFlow``.
You can find the complete test at ``example-code/src/integration-test/java/net/corda/docs/java/tutorial/test/JavaIntegrationTestingTutorial.java``
(Java) and ``example-code/src/integration-test/kotlin/net/corda/docs/kotlin/tutorial/test/KotlinIntegrationTestingTutorial.kt`` (Kotlin) in the
`Corda repo <https://github.com/corda/corda>`_.
.. note::
To make sure the driver classes are included in your project you will need the following in your ``build.gradle`` file in the module in
which you want to test:
.. sourcecode:: groovy
testCompile "$corda_release_group:corda-node-driver:$corda_release_version"