英文:
Unable to understand these folders which got auto created in Eclipse while using selenium/cucumber
问题
我是新来的Eclipse用户,试图创建一个作为Maven项目的小测试案例,并为其添加Cucumber功能。但无论何时我运行代码,都会自动创建两个文件夹。1. Target/generated-sources/annotations 和 2. Target/generated-test-sources/test-annotations。是否有人可以解释为什么会创建这些文件,并且这些文件有什么用途?附图如下 -> target/generated-sources/annotations 问题。提前致谢。
英文:
I am new to eclipse and was trying to create a small test case as a maven project and add cucumber functionalities to it. But whenever i run the code, two folders are getting created automatically. 1. Target/generated-sources/annotations and 2. Target/generated-test-sources/test-annotations. Can anyone explain why these files are getting created and what are these used for? Attached image -> target/generated-sources/annotations issue
Thanks in advance.
答案1
得分: 1
cucumber-reports包含正常的执行报告。
generated-test-sources包含动态运行器类文件,这些文件是在运行时为了并行执行而创建的。
英文:
cucumber-reports contains the normal execution report
generated-test-sources contains the dynamic runner class files which is created during the run time for parallel execution.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论