This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!ELEMENT dogfather (doghouse+)> | |
<!ELEMENT doghouse (doghousename, doghouseurl, repository+)> | |
<!ELEMENT doghousename (#PCDATA)> | |
<!ELEMENT doghouseurl (#PCDATA)> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once(dirname(__FILE__) . '/simpletest/autorun.php'); | |
require_once('../classes/log.php'); | |
class TestOfLogging extends UnitTestCase { | |
function __construct() { | |
parent::__construct('Log test'); | |
} | |
function testCreatingNewFile() { |