<?php
require_once dirname(__FILE__).'/../phpunit.php';

Prado::using('System.Util.TLogger');

/**
 * @package System.Util
 */
class TLoggerTest extends PHPUnit_Framework_TestCase {

	public function setUp() {
	}

	public function tearDown() {
	}

	public function testLog() {
		throw new PHPUnit_Framework_IncompleteTestError();
	}
	
	public function testGetLogs() {
		throw new PHPUnit_Framework_IncompleteTestError();
	}

}

?>