Index: tests/phpunit/tests/feed/rss2.php
===================================================================
--- tests/phpunit/tests/feed/rss2.php	(revision 31848)
+++ tests/phpunit/tests/feed/rss2.php	(working copy)
@@ -117,6 +117,30 @@
 	}
 
 	/**
+	 * Test individual HTML entities encoding in the_title_rss
+	 *
+	 * @ticket 9993
+	 * @return [type] [description]
+	 */
+	function test_entity_encoding_rss_lone_entities() {
+		$actual = apply_filters( 'the_title_rss', '& > " test < \'' );
+		$expected = '&amp; &gt; &quot; test &lt; &#039;';
+		$this->assertEquals( $expected, $actual );
+	}
+
+	/**
+	 * Test XML tag entities encoding in the_title_rss
+	 *
+	 * @ticket 9993
+	 * @return [type] [description]
+	 */
+	function test_entity_encoding_rss_xml_tags() {
+		$actual = apply_filters( 'the_title_rss', '<test>This is a test</test>' );
+		$expected = '&lt;test&gt;This is a test&lt;/test&gt;';
+		$this->assertEquals( $expected, $actual );
+	}
+
+	/**
 	 * @ticket UT32
 	 */
 	function test_items() {
