Example #1
0
 /**
  * @expectedException \Fortissimo\RequestNotFoundException
  */
 public function testRequestNotFound()
 {
     // We don't want FOIL logger, so we create
     // a registry froms scratch.
     $registry = new \Fortissimo\Registry(__CLASS__);
     $registry->route('default')->does('\\Fortissimo\\Command\\EchoText', 'echo')->using('text', 'TEST');
     global $argv;
     $runner = new CLIRunner($argv, STDOUT, STDIN);
     $runner->useRegistry($registry)->run('noSuchRequest');
 }
Example #2
0
<?php

/**
 * @file
 * The default registry for Fortissimo.
 *
 * DO NOT MODIFY. Your application should declare its own registry.
 */
use Fortissimo\Registry;
$register = new Registry('Fortissimo');
$register->route('@test');