Skip to content

Instantly share code, notes, and snippets.

View jeroldhaas's full-sized avatar

Jerold Haas jeroldhaas

View GitHub Profile
@jeroldhaas
jeroldhaas / Assert.fs
Created July 12, 2016 16:38 — forked from bryanedds/Assert.fs
There, screw nunit.
exception AssertionException of string
module Assert =
let isTrue value =
if not value then
raise (AssertionException "Expected true but got false.")
let isFalse value =
if value then