日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java编译不了testpad,java – Gradle编译但不运行TestNG测试

發布時間:2025/3/12 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java编译不了testpad,java – Gradle编译但不运行TestNG测试 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我們剛開始在我們的項目中使用Gradle和TestNG,所以我正在檢查是否實際上沒有任何測試失敗.我很驚訝地看到它沒有.測試被選中并正確編譯,所以我看到了類文件.我也得到了一個關于跑步的報告,但它說了0次測試(預計2次).運行gradle clean test -i給出了以下內容:

:contentplatform-service:compileTestJava (Thread[Daemon worker Thread 7,5,main])

started.

:contentplatform-service:compileTestJava

Executing task ':contentplatform-service:compileTestJava' (up-to-date check took

0.08 secs) due to:

Output file D:\Dev\contentplatform-service\build\classes\test has changed.

Output file D:\Dev\contentplatform-service\build\dependency-cache has changed.

Output file D:\Dev\contentplatform-service\build\classes\test\nl\xillio\conten

tplatform\service\SuperSimpleTest.class has been removed.

All input files are considered out-of-date for incremental task ':contentplatfor

m-service:compileTestJava'.

Compiling with JDK Java compiler API.

:contentplatform-service:compileTestJava (Thread[Daemon worker Thread 7,main])

completed. Took 0.229 secs.

:contentplatform-service:processTestResources (Thread[Daemon worker Thread 7,m

ain]) started.

:contentplatform-service:processTestResources

Skipping task ':contentplatform-service:processTestResources' as it has no sourc

e files.

:contentplatform-service:processTestResources UP-TO-DATE

:contentplatform-service:processTestResources (Thread[Daemon worker Thread 7,m

ain]) completed. Took 0.001 secs.

:contentplatform-service:testClasses (Thread[Daemon worker Thread 7,main]) sta

rted.

:contentplatform-service:testClasses

Skipping task ':contentplatform-service:testClasses' as it has no actions.

:contentplatform-service:testClasses (Thread[Daemon worker Thread 7,main]) com

pleted. Took 0.001 secs.

:contentplatform-service:test (Thread[Daemon worker Thread 7,main]) started.

:contentplatform-service:test

Executing task ':contentplatform-service:test' (up-to-date check took 0.049 secs

) due to:

Output file D:\Dev\contentplatform-service\build\test-results\binary\test has

changed.

Output file D:\Dev\contentplatform-service\build\test-results has changed.

Output file D:\Dev\contentplatform-service\build\reports\tests has changed.

Finished generating test XML results (0.0 secs) into: D:\Dev\contentplatform-ser

vice\build\test-results

Generating HTML test report...

Finished generating test html results (0.014 secs) into: D:\Dev\contentplatform-

service\build\reports\tests

:contentplatform-service:test (Thread[Daemon worker Thread 7,main]) completed.

Took 0.194 secs.

SuperSimpleTest.java:

package nl.xillio.contentplatform.service;

import org.testng.Assert;

import org.testng.annotations.BeforeClass;

import org.testng.annotations.Test;

@Test

public class SuperSimpleTest {

@BeforeClass

public void setUp() {

// code that will be invoked when this test is instantiated

}

@Test

public void testTest() {

Assert.assertEquals(true,true);

}

}

build.gradle包含:

test {

// enable TestNG support (default is JUnit)

useTestNG()

scanForTestClasses = false

include '**/*'

testLogging {

showStandardStreams = true

// log results to "build/test-results" directory

exceptionFormat "full"

events "started","passed","skipped","Failed","standardOut","standardError"

}

}

我已經看過關于這個主題的other questions了,在那里我發現使用scanForTestClasses = false作為解決方法的提示(見https://issues.gradle.org/browse/GRADLE-1682).但是,這個問題似乎無關緊要.我在這里犯了一些其他的菜鳥錯誤嗎?如何才能讓SuperSimpleTest執行?

與50位技術專家面對面20年技術見證,附贈技術全景圖

總結

以上是生活随笔為你收集整理的java编译不了testpad,java – Gradle编译但不运行TestNG测试的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。