mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
2bcaa2ac80
* adding blocked functions ro RestrictedEntityManager and creating RestrictedConnection class * adding flow tests and fixing issues regarding the review * adding quasar util to gradle * updating flow tests * adding space before } at .isThrownBy() * adding spaces
21 lines
887 B
Groovy
21 lines
887 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
description 'NodeAPI tests that require node etc'
|
|
|
|
dependencies {
|
|
testCompile project(":node-api")
|
|
testCompile project(path: ':node-api', configuration:'testArtifacts')
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
// Unit testing helpers.
|
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
|
testCompile project(':node-driver')
|
|
testCompile project(':test-utils')
|
|
}
|