- 授权协议: LGPL
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/jqmock/
- 软件文档: http://jqmock.googlecode.com/svn/trunk/docs/userguide.html
软件介绍
jqMock 是一个轻量级的 JavaScript 模拟测试框架,基于 jqUnit 单元测试框架。
模拟测试代码:
jqUnit.test('hello world test', function() {
var alertMock = new jqMock.Mock(window, 'alert');
alertMock.modify().args('hello world!').multiplicity(2).returnValue();
hello();
hello();
alertMock.verify();
alertMock.restore();
});
Open Data Structures
Pat Morin / AU Press / 2013-6 / USD 29.66
Offered as an introduction to the field of data structures and algorithms, Open Data Structures covers the implementation and analysis of data structures for sequences (lists), queues, priority queues......一起来看看 《Open Data Structures》 这本书的介绍吧!
