public function testRemove()
 {
     $cxt = new ExecutionContext(array('foo' => 'bar', 'narf' => 'bargle'));
     $cxt->remove('narf');
     $this->assertEquals(1, $cxt->size());
     $this->assertNull($cxt->get('narf'));
 }