aboutsummaryrefslogtreecommitdiffstats
path: root/simplepie/test/first_item_title/SPtests/bugs/968.0.php
blob: 6bed207a7c62d1bbeda4585ecafb464988b246ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

class SimplePie_First_Item_Title_Test_Bug_968_Test_0 extends SimplePie_First_Item_Title_Test
{
	function data()
	{
		$this->data = "\xFF\xFE" . chunk_split(
'<?xml version="1.0" encoding="UTF-16LE"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<entry>
		<title>Item Title</title>
	</entry>
</feed>', 1, "\x00");
	}
	
	function expected()
	{
		$this->expected = 'Item Title';
	}
}

?>