public function testKnowsIfFull()
 {
     $tq = new TaskQueue(false);
     $tq->add(function () {
     });
     $this->assertFalse($tq->isEmpty());
 }