Skip to content

Instantly share code, notes, and snippets.

View pokutuna's full-sized avatar
👁️
👄👁👂

pokutuna pokutuna

👁️
👄👁👂
View GitHub Profile
@pokutuna
pokutuna / munit.c
Created September 19, 2011 01:38 — forked from yukioc/macrounit.c
C unit testing framework
#include <stdio.h>
#include "munit.h"
int mu_nfail=0;
int mu_ntest=0;
int mu_nassert=0;
static void test_foo(){
int foo=7;
mu_assert(foo==7);
mu_assert(foo==0||foo==7);