From 56d960c65b75e5ff8e5fad00590f84c474f82ba3 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 28 Jan 2020 21:55:14 +0300 Subject: [PATCH] 201: "testFramework" and "testFramework.core" libs introduced --- compiler/tests-common/build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/compiler/tests-common/build.gradle.kts b/compiler/tests-common/build.gradle.kts index 941a35ba0b8..ddae588b9e7 100644 --- a/compiler/tests-common/build.gradle.kts +++ b/compiler/tests-common/build.gradle.kts @@ -47,6 +47,15 @@ dependencies { Platform[193].orLower { testCompile(intellijDep()) { includeJars("openapi", "picocontainer", rootProject = rootProject) } } + Platform[201].orHigher { + testCompile(intellijDep()) { + includeJars( + "testFramework", + "testFramework.core", + rootProject = rootProject + ) + } + } testCompile(intellijDep()) { includeJars( "jps-model",