adding restructured GPG4Browsers code

- created a test suite available at test/index.html
- fixed a bug in MD5 calculation
This commit is contained in:
Carsten Wentzlow
2011-12-09 18:25:41 +01:00
parent 0526a2444a
commit 81212f213f
57 changed files with 13985 additions and 0 deletions

8
test/example-test.js Normal file
View File

@@ -0,0 +1,8 @@
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;
});