summaryrefslogtreecommitdiff
path: root/website/harness/runTestCase.js
blob: 8b24a1ca0ebf4013a15104bc44f8693315a21cd6 (plain)
1
2
3
4
5
function runTestCase(testcase) {
    if (testcase() !== true) {
        $ERROR("Test case returned non-true value!");
    }
}