gpt4 book ai didi

java - Jenkins 使用错误的 JUnit 版本

转载 作者:行者123 更新时间:2023-11-30 07:32:39 27 4
gpt4 key购买 nike

我的一个测试(几周后运行良好)开始失败,并出现 JUnit v3.x 错误代码:

  [junit] Testcase: testState took 1.079 sec
[junit] FAILED
[junit] null
[junit] junit.framework.AssertionFailedError
[junit] at com.test.PanelTest.testState(PanelTest.java:331)
[junit] at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl$PowerMockJUnit44MethodRunner.runTestMethod(PowerMockJUnit44RunnerDelegateImpl.java:312)
[junit] at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
[junit] at java.util.concurrent.FutureTask.run(FutureTask.java:138)
[junit] at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
[junit] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
[junit] at java.lang.Thread.run(Thread.java:662)

任何地方都没有对 junit.framework 的引用。我正在使用 import org.junit.* 进行所有测试(除了未在 Jenkins 上进行测试的已弃用的测试)。

编辑:从已弃用的测试中删除了所有 junit.framework 导入。

我怀疑 Jenkins 有时仍在使用 JUnit 3.x,而它应该只使用 JUnit 4.x。我到处搜索是否存在其他 JUnit 版本,只留下 JUnit 4.11 的 jar 文件。

无论我对测试代码进行什么更改,此错误都不会消失。我还尝试过“删除”工作区并验证 ant 脚本没有任何对 Junit 3.x 的引用。

这是我的 ANT 插件配置:

enter image description here

这是我的单元测试的精简版本:

package com.test;

import org.fest.swing.core.GenericTypeMatcher;
import org.fest.swing.edt.FailOnThreadViolationRepaintManager;
import org.fest.swing.edt.GuiActionRunner;
import org.fest.swing.edt.GuiQuery;
import org.fest.swing.edt.GuiTask;
import org.fest.swing.fixture.*;
import org.junit.*;
import org.junit.runner.RunWith;
import org.mockito.Matchers;
import org.mockito.Mockito;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

import javax.swing.*;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;

@RunWith(PowerMockRunner.class)
@PrepareForTest({ SomeFinalClass.class })
@PowerMockIgnore("javax.swing.*")
public class PanelTest {

private FrameFixture frameFixture = null;
private MyPanel panel = null;
private MyModel model = null;

@BeforeClass
public static void runOnce() {
FailOnThreadViolationRepaintManager.install();
}

@Before
public void setUp() throws Exception {

<TestFrame extends JFrame>
TestFrame testFrame = GuiActionRunner.execute(new GuiQuery<TestFrame>() {
@Override
protected TestFrame executeInEDT() throws Throwable {

<lots of mocking and stubbing>

return new TestFrame(panel);
}
});

GuiActionRunner.execute(new GuiTask() {
@Override
protected void executeInEDT() throws Throwable {
SwingUtils.setLookAndFeel();
SwingUtilities.updateComponentTreeUI(panel);
}
});

frameFixture = new FrameFixture(testFrame);
frameFixture.show();
frameFixture.robot.waitForIdle();
}


@After
public void tearDown() {
frameFixture.cleanUp();
}

@Test
public void testState() {

AnotherPanel otherPanel = myModel.getOtherPanel();

Assert.assertFalse(otherPanel.isShowing());

<create fake data>
myModel.update(fakeData);

JButtonFixture button = <get button Fixture>
button.click();

Assert.assertTrue(otherPanel.isShowing());

button.click();

Assert.assertFalse(otherPanel.isShowing()); <-- here is where it fails
}
}

最佳答案

AssertionFailedError 仍然存在于 JUnit 4 上,并由已弃用的类 junit.framework.Assert 使用。

不要在 PanelTest 类上使用 junit.framework.Assert,而是使用 org.junit.Assert。验证导入。

关于java - Jenkins 使用错误的 JUnit 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35868838/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com