如何查找未使用的 Cucumber 步骤 [英] How to find Cucumber steps that are not used

查看:13
本文介绍了如何查找未使用的 Cucumber 步骤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用 Cucumber 大约一年了,并且一直在不断地重构功能和步骤定义.我在许多文件中定义了大量步骤,我不禁觉得其中许多不再需要.有没有办法找出哪些黄瓜步骤定义不再被使用?

I've been working with Cucumber for about a year and have been continually refactoring the features and step definitions along the way. I have tons of steps defined across many files and I can't help but feel like many of them are no longer needed. Is there a way to find which cucumber step definitions are no longer being used?

推荐答案

stepdefs 格式化程序可以做到这一点,例如:

The stepdefs formatter can do this, e.g.:

cucumber --dry-run -f stepdefs

它将打印任何不匹配的NOT MATCHED BY ANY STEPS".

It will print 'NOT MATCHED BY ANY STEPS' for any non-matches.

如果您有任何步骤被其他步骤使用,则省略 --dry-run 以获得准确的结果.使用--dry-run,不会执行steps,cucumber不会发现实际使用了引用的step.

If you have any steps that are only used by other steps, then omit --dry-run to get accurate results. With --dry-run, the steps are not executed and cucumber will not find out that the referred step is actually used.

这篇关于如何查找未使用的 Cucumber 步骤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆