jsUnityJavaScript 测试框架

联合创作 · 2023-10-01 16:14

jsUnity 是一个轻量级的上下文无关的 JavaScript 测试框架,本身并不依赖浏览器的功能,可以对 JavaScript、JScript、ECMAScript 进行测试。

示例代码:

function sampleTestSuite() {
	function setUp() {
		jsUnity.log("set up");
	}

	function tearDown() {
		jsUnity.log("tear down");
	}

	function testLessThan() {
		assertTrue(1 < 2);
	}
	
	function testPi() {
		assertEquals(Math.PI, 22 / 7);
	}
}

// optionally wire the log function to write to the context
jsUnity.log = function (s) { document.write(s + "
"); };
// expose the default assertion functions to the current scope
jsUnity.attachAssertions();
var results = jsUnity.run(sampleTestSuite);
// if result is not false,
// access results.total, results.passed, results.failed
浏览 2
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报