Doug Englebart invented the computer mouse nearly 50 years ago. Before HD, before GPU, before UX, the mouse let people interact with an information rich virtual space with ease.
The generation whose work productivity preceded the mouse are retiring. Today's work force learned young or grew up...
Wednesday, March 23, 2016
Thursday, March 3, 2016
Evoking all possible test failure modes in PHPUnit
When you're writing your own PHPUnit test listener, you need a test case that evokes all the different PHPUnit test states. Here's you go:
<?php
class EvokesTest extends \PHPUnit_Framework_TestCase
{
public function test_pass()
{
}
public function test_fail()
{
$this->fail(__FUNCTION__);
...