Moves code sections in tutorials to code files.

This commit is contained in:
Joel Dudley
2017-10-01 23:33:15 +01:00
committed by GitHub
parent 4d4027947b
commit 4641d3c4dd
42 changed files with 2264 additions and 2078 deletions

View File

@ -24,7 +24,7 @@ class IntegrationTestingTutorial {
fun `alice bob cash exchange example`() {
// START 1
driver(startNodesInProcess = true,
extraCordappPackagesToScan = listOf("net.corda.finance.contracts.asset")) {
extraCordappPackagesToScan = listOf("net.corda.finance.contracts.asset")) {
val aliceUser = User("aliceUser", "testPassword1", permissions = setOf(
startFlowPermission<CashIssueFlow>(),
startFlowPermission<CashPaymentFlow>()
@ -104,7 +104,7 @@ class IntegrationTestingTutorial {
}
)
}
// END 5
}
}
}
// END 5
}