Created
August 3, 2010 23:15
-
-
Save tobi/507343 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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