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执行?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值