#!/usr/bin/env php
<?php
/*
 * This file is part of DBUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

require_once '/usr/share/php/PHPUnit/Autoload.php';

$command = new PHPUnit_Extensions_Database_UI_Command(
  new PHPUnit_Extensions_Database_UI_ModeFactory()
);

$command->main(
  new PHPUnit_Extensions_Database_UI_Mediums_Text($_SERVER['argv']),
  new PHPUnit_Extensions_Database_UI_Context()
);
