This file contains hidden or 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
var Assert = function () { | |
"use strict"; | |
var AssertionError = function (msg) { | |
var final = "Assertion failed: " + msg; | |
console.error(final); | |
}; | |
var args = arguments; | |
var res = true; |
This file contains hidden or 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
/* | |
* File: minunit.h | |
* Author: Zed. A. Shaw, Sam | |
* | |
* @see http://c.learncodethehardway.org/book/ex30.html | |
* | |
* Created on 27 August 2014, 22:14 | |
*/ | |
#ifndef MINUNIT_H |
NewerOlder