Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// $Id: xml_test.php 174141 2004-12-06 15:28:59Z quipo $
3
 
4
require_once 'db_test.php';
5
 
6
class TestOfContainerXML extends TestOfContainerDB {
7
    function TestOfContainerXML($name='Test of Container XML') {
8
        $this->UnitTestCase($name);
9
    }
10
    function setUp() {
11
        $driver = 'XML';
12
        $options = array(
13
            'filename'         => 'i18n.xml',
14
            'save_on_shutdown' => true,
15
        );
16
        $this->tr =& Translation2::factory($driver, $options);
17
    }
18
}
19
?>