Projet

Général

Profil

Paste
Télécharger (390 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / simplepie / tests / oldtests / first_item_title / SPtests / bugs / 968.0.php @ 41cc1b08

1
<?php
2

    
3
class SimplePie_First_Item_Title_Test_Bug_968_Test_0 extends SimplePie_First_Item_Title_Test
4
{
5
        function data()
6
        {
7
                $this->data = "\xFF\xFE" . chunk_split(
8
'<?xml version="1.0" encoding="UTF-16LE"?>
9
<feed xmlns="http://www.w3.org/2005/Atom">
10
        <entry>
11
                <title>Item Title</title>
12
        </entry>
13
</feed>', 1, "\x00");
14
        }
15
        
16
        function expected()
17
        {
18
                $this->expected = 'Item Title';
19
        }
20
}
21

    
22
?>