Skip to content

Instantly share code, notes, and snippets.

@tobi
Created August 3, 2010 23:15
Show Gist options
  • Save tobi/507343 to your computer and use it in GitHub Desktop.
Save tobi/507343 to your computer and use it in GitHub Desktop.
<html>
<body>
<script>
var TestCase = function(testcase) {
var success = 0;
var failure = 0;
var print = function(chr) {
console.log(chr);
document.write(chr);
}
var println = function(txt) {
console.log(txt);
document.write("<br>");
document.write(txt);
}
var ok = function() { success += 1; print('.') }
var fail = function() { failure += 1; print('f') }
this.assertEqual = function(left, right, message) {
left == right ? ok() : fail()
}
this.assertNotEqual = function(left, right, message) {
left != right ? ok() : fail()
}
console.log(this);
for (name in testcase) {
testcase[name].apply(this);
}
println("Success: " + success + " Failures: " + failure);
}
new TestCase({
testSomething: function() {
this.assertEqual(1,1);
},
testSomethingElse: function() {
this.assertEqual(1,2);
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment