mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
40 lines
2.0 KiB
Java
40 lines
2.0 KiB
Java
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
package com.intellij.junit4;
|
|
|
|
import com.intellij.execution.configurations.RunConfiguration;
|
|
import com.intellij.java.execution.AbstractTestFrameworkCompilingIntegrationTest;
|
|
import com.intellij.openapi.util.text.StringUtil;
|
|
import com.intellij.openapi.vfs.VfsUtilCore;
|
|
import com.intellij.psi.JavaPsiFacade;
|
|
import com.intellij.psi.PsiClass;
|
|
import com.intellij.psi.search.GlobalSearchScope;
|
|
import com.intellij.testFramework.PlatformTestUtil;
|
|
import com.intellij.util.containers.ContainerUtil;
|
|
import org.jetbrains.idea.maven.aether.ArtifactRepositoryManager;
|
|
import org.jetbrains.jps.model.library.JpsMavenRepositoryLibraryDescriptor;
|
|
|
|
public class CustomJUnit5IntegrationTest extends AbstractTestFrameworkCompilingIntegrationTest {
|
|
@Override
|
|
protected void setupModule() throws Exception {
|
|
super.setupModule();
|
|
final ArtifactRepositoryManager repoManager = getRepoManager();
|
|
addMavenLibs(myModule, new JpsMavenRepositoryLibraryDescriptor("org.junit.jupiter", "junit-jupiter-api", "5.8.1"), repoManager);
|
|
addMavenLibs(myModule, new JpsMavenRepositoryLibraryDescriptor("org.junit.platform", "junit-platform-engine", "1.8.1"), repoManager);
|
|
}
|
|
|
|
@Override
|
|
protected String getTestContentRoot() {
|
|
return VfsUtilCore.pathToUrl(PlatformTestUtil.getCommunityPath() + "/plugins/junit5_rt_tests/testData/integration/custom5Project");
|
|
}
|
|
|
|
public void testRunClass() throws Exception {
|
|
PsiClass aClass = JavaPsiFacade.getInstance(myProject).findClass("xxx.SomeTest", GlobalSearchScope.projectScope(myProject));
|
|
RunConfiguration configuration = createConfiguration(aClass);
|
|
|
|
ProcessOutput processOutput = doStartTestsProcess(configuration);
|
|
assertEmpty(processOutput.out);
|
|
assertTrue(StringUtil.join(processOutput.err, "\n"),
|
|
ContainerUtil.exists(processOutput.err, s -> s.contains("java.lang.RuntimeException: The Bad. The Ugly. No Good")));
|
|
}
|
|
}
|