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 FIT runner
  4.  * 
  5.  * $Id: web.php 6 2007-06-06 07:37:36Z gerd $
  6.  */
  7.  
  8. // tell where to find project fixtures
  9. $fitDir =   dirname__FILE__ '/fixture';
  10. define'TESTING_FIT_FIXTURE_DIR'$fitDir );
  11.  
  12. $baseDir realpathdirname__FILE__ '/../..' );
  13. $incPath get_include_path(. PATH_SEPARATOR  . realpath$baseDir '/..' );
  14. set_include_path$incPath );
  15.  
  16. $in 'in/math.html';
  17. ifisset$_GET['in') ) {
  18.     $in =   $_GET['in'];
  19. }
  20.  
  21. include_once 'Testing/FIT/Runner.php';
  22. $fr =   new Testing_FIT_Runner();
  23. $fr->run$in'-' );
  24. ?>

Documentation generated on Mon, 11 Mar 2019 14:44:19 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.