gpt4 book ai didi

scala - 如何使用maven从specs + scalacheck获得漂亮的输出?

转载 作者:行者123 更新时间:2023-12-02 04:12:26 26 4
gpt4 key购买 nike

当我使用IDEA运行Specs + Scalacheck测试时,我得到了漂亮的输出:

  Specification "CoreSpec"
The core grammar should
+ parse any encoded string
+ fail to parse an empty encoded string
+ parse an expected empty string
+ fail on a non-empty string when expecting an empty string
+ parse well-formed coordinates

为了使我的测试能够与Maven一起运行,我有通常的做法:
class CoreSpecTest extends JUnit4(CoreSpec)

...但是输出不是很令人满意:
Running CoreSpecTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.782 sec

Results :

Tests run: 5, Failures: 0, Errors: 0, Skipped: 0

在这种情况下,有没有办法获得漂亮的输出?

谢谢...

最佳答案

我的项目有一些解决方法:

f.e.我有规格

class SomeSpec通过Textile扩展了HtmlSpecification {
....
}

class Some2Spec扩展了Textile的HtmlSpecification {
....
}

我也有这样的Junit测试

@测试
AppTest类{

@Test
def testOk = {}

@Test
def printSpecs {
(new SomeSpec).reportSpecs
(new Some2Spec).reportSpecs
}

}

我知道这不是很好的解决方案,所以
我认为最好的方法是从Maven迁移到sbt。

关于scala - 如何使用maven从specs + scalacheck获得漂亮的输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4385818/

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