Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function testText() { |
||
36 | |||
37 | $adr = [ |
||
38 | 'pobox' => '', |
||
39 | 'ext' => '', |
||
40 | 'street' => '2 Example Avenue', |
||
41 | 'locality' => 'Anytown', |
||
42 | 'region' => 'Foo', |
||
43 | 'code' => '01111', |
||
44 | 'country' => 'Bar' |
||
45 | ]; |
||
46 | |||
47 | $instance = new Address( '', $adr ); |
||
48 | $instance->set( 'region', 'Bar0042' ); |
||
49 | |||
50 | $this->assertSame( |
||
51 | "ADR;TYPE=WORK;CHARSET=UTF-8:;;2 Example Avenue;Anytown;Bar0042;01111;Bar\r\n", |
||
52 | $instance->text() |
||
53 | ); |
||
54 | } |
||
55 | |||
57 |