Skip to content

Instantly share code, notes, and snippets.

@tarzak
Last active September 28, 2015 11:41
Show Gist options
  • Save tarzak/c4d74d3ad614225c175b to your computer and use it in GitHub Desktop.
Save tarzak/c4d74d3ad614225c175b to your computer and use it in GitHub Desktop.
example of unit testing from inside?
//function to test
function aPlusB (a,b) {
return a+b
};
//test-function
function testAplusB (func) {
return func(2,1) === 3
};
//invoking of test-function
testAplusB(aPlusB) // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment