public function testCustomHandler()
 {
     $handler = \Jenner\Crontab\Logger\MissionLoggerFactory::getHandler("custom://CustomHandler?param_1=param_1&param_2=param_2");
     $this->assertInstanceOf("Monolog\\Handler\\HandlerInterface", $handler);
     $reflect = new ReflectionObject($handler);
     $this->assertEquals($reflect->getProperty("param_1")->getValue($handler), "param_1");
     $this->assertEquals($reflect->getProperty("param_2")->getValue($handler), "param_2");
 }