public function throwabeExtensions()
 {
     $t = new Throwable('Test');
     $this->assertNotEquals(array(), $t->getStackTrace());
     $t->clearStackTrace();
     $this->assertEquals(array(), $t->getStackTrace());
 }