Files
openide/plugins/gradle/java/testSources/compiler/GradleDelegatedBuildTestCase.java
Eldar Abusalimov b0975d4d58 UsefulTestCase: Make it JUnit4-friendly
GitOrigin-RevId: 821c2ba3c40cfc816b6eba059a898b2de40502b7
2020-07-02 09:09:07 +00:00

16 lines
488 B
Java

// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.plugins.gradle.compiler;
/**
* @author Vladislav.Soroka
*/
public abstract class GradleDelegatedBuildTestCase extends GradleCompilingTestCase {
@Override
public void setUp() throws Exception {
super.setUp();
getCurrentExternalProjectSettings().setDelegatedBuild(true);
useProjectTaskManager = true;
}
}