Blame view

libs/XML_Feed_Parser-1.0.2/tests/convertedtests/http.php 239 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  
  require_once 'XML_Feed_Parser_TestCase.php';
  
  class http_TestCase extends XML_Feed_Parser_Converted_TestCase {
  }
  
  $suite = new PHPUnit_TestSuite('http_TestCase');
  $result = PHPUnit::run($suite, '123');
  echo $result->toString();
  
  ?>