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
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
class PHPRtfLite_WriterTest extends PHPUnit_Framework_TestCase
{
public function testWriteOutputAsString()
{
$streamOutput = new PHPRtfLite_Writer_String();
$this->processStream($streamOutput);
}
public function testFileStream()
{
$filename = sys_get_temp_dir() . '/' . md5(microtime(true)) . '.txt';
$streamOutput = new PHPRtfLite_StreamOutput();
$streamOutput->setFilename($filename);
$this->processStream($streamOutput);
}
private function processStream(PHPRtfLite_Writer_Interface $streamOutput)
{
$streamOutput->open();
$contents = array(
'Hello world!',
"\n",
"Teststring: äüö"
);
foreach ($contents as $part) {
$streamOutput->write($part);
}
$this->assertEquals(implode('', $contents), $streamOutput->getContent());
}
}
|