热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

JUnit4和JUnit5测试未在IntelliJ中运行

如何解决《JUnit4和JUnit5测试未在IntelliJ中运行》经验,为你挑选了1个好方法。

我试图在IntelliJ IDEA 2017.1.5中的同一个项目中使用JUnit4和JUnit5测试.到目前为止,所有测试都基于JUnit4.我加了jupiter,platform并且vintage依赖于我的pom.xml(包括junit-platform-surefire-providerjunit-vintage-engine为保命插件).现在,我的JUnit4的示例测试和JUnit 5的测试都没有执行.

相反,我收到以下错误:

Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.commons.util.ReflectionUtils.getDefaultClassLoader()Ljava/lang/ClassLoader;
    at org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry.loadTestEngines(ServiceLoaderTestEngineRegistry.java:30)
    at org.junit.platform.launcher.core.LauncherFactory.create(LauncherFactory.java:53)
    at com.intellij.junit5.JUnit5IdeaTestRunner.createListeners(JUnit5IdeaTestRunner.java:39)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:49)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

Process finished with exit code 1
Empty test suite.

我试图尽可能地遵循JUnit 5用户指南中的建议,但我可能错过了一些东西.如何让两个测试都正常运行?(当然还有我现有的所有测试)

JUnit 4测试类

package com.glaed.util;

import org.junit.Test;

public class JUnit4Test {

  @Test
  public void helloJUnit4Test() {
    System.out.println("Hello JUnit4!");
  }

}

JUnit 5测试类

package com.glaed.util;

import org.junit.jupiter.api.Test;

class JUnit5Test {

  @Test
  void helloJU5test() {
    System.out.println("Hello JUnit5!");
  }
}

pom.xml(相关部分)

    
    
        
            
                org.apache.maven.plugins
                maven-surefire-plugin
                2.19.1
                
                    src/test
                    
                        **/*WebappTest.java
                    
                
                
                    
                        org.junit.platform
                        junit-platform-surefire-provider
                        1.0.0-M5
                    
                    
                        org.junit.jupiter
                        junit-jupiter-engine
                        5.0.0-M5
                    
                    
                        org.junit.vintage
                        junit-vintage-engine
                        4.12.0-M5
                    
                
            
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.5.1
                
                    1.8
                    1.8
                    UTF-8
                
            
        
    




    

    
    
        org.junit.jupiter
        junit-jupiter-engine
        5.0.0-M5
        test
    

    
    
        org.junit.jupiter
        junit-jupiter-api
        5.0.0-M5
        test
    

    
        org.junit.vintage
        junit-vintage-engine
        4.12.0-M5
        test
    

    

    
        junit
        junit
        4.12
        test
    


小智.. 12

使用以下版本junit-jupiter-api:


  org.junit.jupiter
  junit-jupiter-api 
  5.0.0-M4
  test

并且还在版本上5.0.0-M4使用所有junit-jupiter依赖项.



1> 小智..:

使用以下版本junit-jupiter-api:


  org.junit.jupiter
  junit-jupiter-api 
  5.0.0-M4
  test

并且还在版本上5.0.0-M4使用所有junit-jupiter依赖项.


对.详见http://junit.org/junit5/docs/current/user-guide/#running-tests-ide-intellij-idea
推荐阅读
author-avatar
濛宝贝儿
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有