fork-openpgpjs/test/example-test.js
Carsten Wentzlow 81212f213f adding restructured GPG4Browsers code
- created a test suite available at test/index.html
- fixed a bug in MD5 calculation
2011-12-09 18:25:41 +01:00

9 lines
260 B
JavaScript

unittests.register("Example test", function() {
var result = new Array();
result[0] = new test_result("test1 - testing on (\"str\" == \"str\")", ("str" == "str"));
result[1] = new test_result("test2 - testing on (1 == 1)", (1 == 1));
return result;
});