Skip to content

Instantly share code, notes, and snippets.

@wkocmann
Forked from mathiasverraes/TestFrameworkInATweet.php
Last active October 4, 2016 10:17
Show Gist options
  • Save wkocmann/9786065 to your computer and use it in GitHub Desktop.
Save wkocmann/9786065 to your computer and use it in GitHub Desktop.
<?php
require_once 'TestFrameworkInATweet.php';
it("should sum two numbers", 1+1==2);
it("should display an X for a failing test", 1+1==3);
done();
<?php
function it($m,$p) {
echo ($p?'✔︎':'✘')." It $m\n";
if (!$p) {
$GLOBALS['f']=1;
}
}
function done() {
if(@$GLOBALS['f']) {
die(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment