我的类库有多少行代码
出于指标原因,我需要知道我的类库有多少行代码。我这样做是为了代码覆盖率......
所以如果类库 1 有 50 行代码和 100% 覆盖率 如果类库 2 有 500 行代码和 0% 覆盖率,
我的总覆盖率是 90%
知道如何做到这一点吗?有没有实用程序或方法可以使用 Visual Studio?
for metrics reasons I need to know how many lines of code my class library has. I'm doing this for code coverage....
So if Class library 1 has 50 lines of code and 100% coverage
And if Class library 2 has 500 lines of code and 0% coverage
My total coverage is 90%
Any idea how to do this? Is there a utility or a way to use Visual Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有哪个VS版本和版本?它内置于 2008 Team Developer 和 2010 Premium 和 Ultimate 中的分析 -> 计算代码指标下。
Which VS version and edition do you have? It's built into 2008 Team Developer and 2010 Premium and Ultimate under Analyze->Calculate Code Metrics.
使用 Testdriven.net 插件运行 nCover。它将向您显示覆盖率%
http://www.testdriven.net/
Run nCover using the Testdriven.net plugin. It will show you the coveragde %
http://www.testdriven.net/