Files
openide/plugins/junit5_rt_tests/test/com/intellij/junit4/CustomJUnit5IntegrationTest.java
Anna Kozlova 091addf219 [junit 5] update to 5.8.1
GitOrigin-RevId: f4ac9e239e3773a31b5d88c52ed3e19311140cf7
2021-11-08 20:58:20 +00:00

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")));
}
}