- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://doctestjs.org/
- 软件文档: http://doctestjs.org/tutorial.html
软件介绍
Doctest.js 是 JavaScript 的测试框架。
示例测试代码:
function capitalize(words) { return words.replace(/\b[a-z]/g, function (m) { return m[0].toUpperCase(); }); } print(capitalize('some words')); // => Some Words print(capitalize('some 4ward words')); // => Some 4ward Words
Domain-Driven Design
Eric Evans / Addison-Wesley Professional / 2003-8-30 / USD 74.99
"Eric Evans has written a fantastic book on how you can make the design of your software match your mental model of the problem domain you are addressing. "His book is very compatible with XP. It is n......一起来看看 《Domain-Driven Design》 这本书的介绍吧!
