Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**This is included from unit tests to skip the test if I18N_UnicodeString
3
* is not available.
4
*
5
* LICENSE:
6
* This source file is subject to version 2.1 of the LGPL
7
* that is bundled with this package in the file LICENSE.
8
*
9
* COPYRIGHT:
10
* Empowered Media
11
* http://www.empoweredmedia.com
12
* 481 Eighth Avenue Suite 1530
13
* New York, NY 10001
14
*
15
* @copyright Empowered Media 2006
16
* @license http://www.gnu.org/copyleft/lesser.html  LGPL Version 2.1
17
* @author Lukas Feiler <lukas.feiler@lukasfeiler.com>
18
* @package XML_Query2XML
19
* @version $Id: skipif.php 222764 2006-11-03 15:53:01Z lukasfeiler $
20
*/
21
 
22
if (!@include_once 'I18N/UnicodeString.php') {
23
    print 'skip could not find I18N/UnicodeString.php';
24
    exit;
25
}
26
?>