mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix testdata
GitOrigin-RevId: a15cdef60fa2adf485080eaa8747d656c2e17f66
This commit is contained in:
committed by
intellij-monorepo-bot
parent
96a20d974e
commit
72a4e0fd27
@@ -148,9 +148,10 @@ public class ModulePathTest extends BaseConfigurationTestCase {
|
||||
checkLibrariesOnPathList(module, params4Tests.getModulePath());
|
||||
|
||||
//ensure downloaded junit launcher dependencies are in module path as well
|
||||
assertSize(2, params4Tests.getClassPath().getPathList());
|
||||
assertContainsElements(params4Tests.getClassPath().getPathList(), PathUtil.getJarPathForClass(JUnitStarter.class));
|
||||
assertContainsElements(params4Tests.getClassPath().getPathList(), TestObject.getJUnit5RtFile().getPath());
|
||||
PathsList classPath = params4Tests.getClassPath();
|
||||
assertSize(3, classPath.getPathList());
|
||||
assertContainsElements(classPath.getPathList(), PathUtil.getJarPathForClass(JUnitStarter.class));
|
||||
assertContainsElements(classPath.getPathList(), TestObject.getJUnit5RtFile().getPath());
|
||||
|
||||
//production module output is on the module path
|
||||
PathsList modulePath = params4Tests.getModulePath();
|
||||
|
||||
Reference in New Issue
Block a user