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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<?php
require_once('PHPUnit/Framework.php');
require_once('src/PhpBB3Message.php');
class PhpBB3MessageTest extends PHPUnit_Framework_TestCase {
public function provider() {
return array(
/*
array(array(
'data' => '',
'source' => '',
'post_id' => '',
'from' => '',
'subject' => '',
'message_id' => '',
'in_reply_to' => '',
'references' => '',
'body' => ''
))
*/
);
}
protected function buildMessage($params) {
return new PhpBB3Message();
}
/**
* @dataProvider provider
*/
public function testGetSource($expected) {
$this->markTestIncomplete();
}
/**
* @dataProvider provider
*/
public function testGetPostId($expected) {
$this->markTestIncomplete();
}
/**
* @dataProvider provider
*/
public function testGetFrom($expected) {
$msg = $this->buildMessage($expected);
$this->assertEquals($expected['from'], $msg->getFrom());
}
/**
* @dataProvider provider
*/
public function testGetSubject($expected) {
$msg = $this->buildMessage($expected);
$this->assertEquals($expected['subject'], $msg->getSubject());
}
/**
* @dataProvider provider
*/
public function testGetMessageId($expected) {
$msg = $this->buildMessage($expected);
$this->assertEquals($expected['message_id'], $msg->getMessageId());
}
/**
* @dataProvider provider
*/
public function testGetInReplyTo($expected) {
$msg = $this->buildMessage($expected);
$this->assertEquals($expected['in_reply_to'], $msg->getInReplyTo());
}
/**
* @dataProvider provider
*/
public function testGetReferences($expected) {
$msg = $this->buildMessage($expected);
$this->assertEquals($expected['references'], $msg->getReferences());
}
/**
* @dataProvider provider
*/
public function testGetBody($expected) {
$this->markTestIncomplete();
}
}
?>
|