パッケージでTinytestを使用して単体テストに取り組んでおり、メソッドが例外を発生させることをテストしたかったので、test.throws()
.
私は隕石プロジェクトを作成します:
meteor create myapp
cd myapp
meteor add tinytest
パッケージを作成するには、
meteor create --package test-exception
そして、これは私の簡単なテスト
ファイルですtest-exception.js
Joe = {
init: function () {
throw "an exception";
}
}
ファイルpackage.js
Package.describe({
name: 'tinytest-throws',
version: '0.0.1'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.0.2');
api.use('ecmascript');
api.addFiles('tinytest-throws.js');
api.export('Joe', 'server'); // create a global variable for the server side
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('tinytest-throws');
api.addFiles('tinytest-throws-tests.js', 'server'); // launch this test only as server
});
ファイルtest-exception-tests.js
Tinytest.add('Call a method that raise an exception', function (test) {
test.throws(
Joe.init, // That could be a way, but this fails
"This is an exception"
);
test.throws(
Joe.init(),
"This is an exception"
);
});
例外が適切に発生していることをテストする方法を知っている人はいますか?