java.lang.NoSuchMethodError 在 Eclipse 中运行 TestNG 测试
Posted
技术标签:
【中文标题】java.lang.NoSuchMethodError 在 Eclipse 中运行 TestNG 测试【英文标题】:java.lang.NoSuchMethodError running TestNG Test in Eclipse 【发布时间】:2017-12-30 00:11:28 【问题描述】:我得到了异常
FAILED CONFIGURATION: @BeforeSuite arquillianBeforeSuite
java.lang.NoSuchMethodError: org.jboss.remoting3.Endpoint.builder()Lorg/jboss/remoting3/EndpointBuilder;
at org.jboss.as.controller.client.impl.RemotingModelControllerClient.getOrCreateChannel(RemotingModelControllerClient.java:117)
at org.jboss.as.controller.client.impl.RemotingModelControllerClient$1.getChannel(RemotingModelControllerClient.java:59)
at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:147)
at org.jboss.as.protocol.mgmt.ManagementChannelHandler.executeRequest(ManagementChannelHandler.java:122)
使用 TestNG 和 wildfly11 在 Eclipse Oxygen 中运行 Arquillian 测试。 我的Maven配置如下:
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
<version>1.1.13.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.11</version>
</dependency>
<dependency>
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<version>2.0.1.Final</version>
<scope>test</scope>
</dependency>
【问题讨论】:
【参考方案1】:我也有同样的问题。我尝试了以下解决方案,它对我很有用。 解决方案是:
将 TestNG 库添加到项目中。 步骤是:
-
右键单击项目
构建路径
配置构建路径
库(选项卡)
转到“添加库”并单击按钮。
添加“TestNG”库并单击确定/下一步。
TestNG 库将添加到您的项目中。
再次尝试运行,它会工作。
注意:我使用的是 Java1.8 库(必须从 java1.5 更新它,因为我的 eclipse 使用默认 1.5 创建项目)。
【讨论】:
【参考方案2】:即使我在使用最新版本的 TestNG 时也遇到了同样的问题,但降级到较低版本的 TestNG 解决了这个问题。
【讨论】:
降级 testNg 版本也对我有帮助。谢谢:)【参考方案3】:解决方案是:
删除 Wildfly 11 运行时 来自类路径。
-
右击项目
构建路径
配置构建路径
库(选项卡)
删除 Wildfly 11 运行时(或 Wildfly 10 运行时)
为什么这是必要的?欢迎评论...
【讨论】:
【参考方案4】:将 testng 库添加到项目中对我有用!
【讨论】:
如果可能,请举一些例子。请查看***.com/help/how-to-answer 以获得一些指导。【参考方案5】:如果您正在处理 maven 项目,请将您的 testng 版本升级到 7.1.0 及其测试范围。
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.1.0</version>
<scope>test</scope>
</dependency>
【讨论】:
以上是关于java.lang.NoSuchMethodError 在 Eclipse 中运行 TestNG 测试的主要内容,如果未能解决你的问题,请参考以下文章