public function testStart() {
$stopwatch = new Stopwatch();
$event = $stopwatch
->start('foo', 'cat');
$this
->assertInstanceof('Symfony\\Component\\HttpKernel\\Debug\\StopwatchEvent', $event);
$this
->assertEquals('cat', $event
->getCategory());
}