Testing_FIT
[ class tree: Testing_FIT ] [ index: Testing_FIT ] [ all elements ]

Source for file web.php

Documentation is available at web.php

  1. <?php
  2. /**
  3.  * start fut runner
  4.  */
  5.  
  6. // tell where to find project fixtures
  7. $fitDir =   dirname__FILE__ '/fixture';
  8. define'TESTING_FIT_FIXTURE_DIR'$fitDir );
  9.  
  10. $baseDir realpathdirname__FILE__ '/../..' );
  11. $incPath get_include_path(. PATH_SEPARATOR  . realpath$baseDir '/..' );
  12. set_include_path$incPath );
  13.  
  14. $in 'in/math.html';
  15. ifisset$_GET['in') ) {
  16.     $in =   $_GET['in'];
  17. }
  18.  
  19. include_once 'Testing/FIT/Runner.php';
  20. $fr =   new Testing_FIT_Runner();
  21. $fr->run$in'-' );
  22. ?>

Documentation generated on Mon, 11 Mar 2019 15:05:06 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.