<?php

$baseDir = realpath( dirname( __FILE__ ) . '/..' );
define( 'PHPFIT_FIXTURE_DIR', $baseDir );
$incPath = get_include_path() . ':' . realpath( $baseDir . '/..' );
set_include_path( $incPath );

include_once 'PHPFIT/Runner.php';

touch( "output.html" );

$argv = array( 'self', '../data/division.html', 'test/output.html' );

print_r( $argv );

PHPFIT_Runner::main( $argv );

?>