We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
FitNesse。 这大约是 50K 行 Java 代码。 它是使用 TDD 构建的,并且具有大约 90% 的代码覆盖率(可能更高)。 整个过程中大量使用了 SOLID 原则。
我相信你一定能找到一些你不喜欢的部分。 我经常这样做。 但总体而言,该系统非常强大。 我们有数千名用户和一个非常小的错误列表。 我们频繁发布版本,唯一的 QA 测试是:
ant testbuild
。 如果测试通过,我们就会发货。FitNesse. This is about 50K lines of Java code. It was build with TDD, and has about 90% code coverage (probably higher). There is a strong use of SOLID principles throughout.
I'm sure you can find some parts you don't like. I often do. But overall the system is very robust. We have thousands of users, and a very small buglist. We make frequent releases, and the sole QA test is:
ant testbuild
. If the tests pass, we ship it.Spring框架
Spring Framework
FitNesse,由鲍勃·马丁叔叔 SOLID 先生维护。
FitNesse, maintained by Mr. SOLID, Uncle Bob Martin.
Dimdwarf 应用服务器 - 它完全使用 TDD/BDD 编写,并尝试编写尽可能干净的代码(扎实,好名字等)。 生产代码约为4500 SLOC,测试代码约为7300 SLOC,代码覆盖率超过90%,最大生产类约为200 LOC。
Dimdwarf Application Server - It's been written completely with TDD/BDD and by trying to write as clean code as possible (SOLID, good names etc.). Production code is about 4500 SLOC, test code is about 7300 SLOC, code coverage is over 90% and the largest production classes are about 200 LOC.
CruiseControl.NET
CruiseControl.NET