楼主思路很好,最近也有这个想法,不知过去这么久,有什么新的想法之类没有?
好厉害,mark 下,有时间来学习
你最后的思路不是和之前一样了吗?还是一个接口很多用例啊,有什么实质性的改变吗
感谢楼主分享,学习了
囧,我还没读过。很想读这本书,但没找到电子版
A Practitioner's Guide to Software Test Design,没人推荐这本吗
你有这本书的电子版嘛?分享下吧,网上找了好久找不到
终于解决问题了,虽然还是知其然,不知其所以然的阶段,下面贴上问题及解决办法:
[AppClassLoader@4629104a] error at io\qameta\allure\aspects\AttachmentsAspects.java::0 the @annotation pointcut expression is only supported at Java 5 compliance level or above
[DelegatingClassLoader@5a45133e] error at io\qameta\allure\aspects\StepsAspects.java::0 the @annotation pointcut expression is only supported at Java 5 compliance level or above
[DelegatingClassLoader@5a45133e] error at io\qameta\allure\aspects\AttachmentsAspects.java::0 the @annotation pointcut expression is only supported at Java 5 compliance level or above
解决方案 1:将 pom 文件中 aspectj 版本改成 1.9.1
参考:https://blog.csdn.net/benjamin_whx/article/details/23256799
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
解决方案 2:在 pom 文件中加上依赖:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
</dependency>
参考:https://blog.csdn.net/menofgod/article/details/81288692#comments
解决方案 3:在 pom 文件中加上
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
参考:https://stackoverflow.com/questions/47341559/allure-testng-maven-org-testng-itestnglistener-provider-io-qameta-allure-testn
希望帮到有同样困惑的旁友
说的很全面,但第一条不是很理解,是一个测试点对应多个测试用例吗?
那比如当前这个页面(https://testerhome.com/topics/10382),回复是一个功能点,上传图片是其中一个测试点,那其中正向测试用例是不是:上传符合要求的图片成功。我这个理解对吗?
https://testerhome.com/topics/7943,刚看到这篇文章,受益匪浅,与大家共勉