Skip to content

Instantly share code, notes, and snippets.

View catb0t's full-sized avatar
💭
hmm

Cat Stevens catb0t

💭
hmm
View GitHub Profile
@catb0t
catb0t / Assert.js
Last active February 27, 2016 22:58
var Assert = function () {
"use strict";
var AssertionError = function (msg) {
var final = "Assertion failed: " + msg;
console.error(final);
};
var args = arguments;
var res = true;
@catb0t
catb0t / minunit.h
Created February 12, 2016 02:14 — forked from sam159/minunit.h
minunit header for unit testing c code
/*
* 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