f90e19c3
Andrea Petta
plugin update
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
require_once 'PHPUnit/Framework.php';
require_once dirname(__FILE__) . '/../PHPRtfLiteSampleTestCase.php';
/**
* Created on 08.04.2010
*
* @author sz
*/
class ChessTournamentSampleTest extends PHPRtfLiteSampleTestCase
{
private $_name = 'chess_tournament';
public function test()
{
$this->processTest($this->_name . '.php');
}
protected function getSampleFile()
{
return $this->getSampleDir() . '/generated/' . $this->_name . '.rtf';
}
}
|