public function testStop()
{
$sig = 'foo';
$this->supA->shouldReceive('stop')->once()->with($sig);
$this->supB->shouldReceive('stop')->once()->with($sig);
$this->supC->shouldReceive('stop')->once()->with($sig);
$this->assertSame($this->sup, $this->sup->stop($sig));
}