]> git.mxchange.org Git - friendica.git/commitdiff
Update and rename test class
authorAdam Magness <adam.magness@gmail.com>
Mon, 5 Nov 2018 18:08:33 +0000 (13:08 -0500)
committerAdam Magness <adam.magness@gmail.com>
Mon, 5 Nov 2018 18:08:33 +0000 (13:08 -0500)
update and rename test class.

tests/src/Util/StringsTest.php [deleted file]
tests/src/Util/XmlTest.php [new file with mode: 0644]

diff --git a/tests/src/Util/StringsTest.php b/tests/src/Util/StringsTest.php
deleted file mode 100644 (file)
index eb5e707..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-/**
- * @file tests/src/Util/StringsTest.php
- */
-namespace Friendica\Test\Util;
-
-use Friendica\Util\Strings;
-use PHPUnit\Framework\TestCase;
-
-/**
- * @brief Strings utility test class
- */
-class StringsTest extends TestCase
-{
-    /**
-       * escape and unescape
-       */
-       public function testEscapeUnescape()
-       {
-               $text="<tag>I want to break\n this!11!<?hard?></tag>";
-               $xml=XML::escape($text);
-               $retext=XML::unescape($text);
-               $this->assertEquals($text, $retext);
-    }
-    
-       /**
-        * escape and put in a document
-        */
-       public function testEscapeDocument()
-       {
-               $tag="<tag>I want to break</tag>";
-               $xml=XML::escape($tag);
-               $text='<text>'.$xml.'</text>';
-               $xml_parser=xml_parser_create();
-               //should be possible to parse it
-               $values=array();
-               $index=array();
-               $this->assertEquals(1, xml_parse_into_struct($xml_parser, $text, $values, $index));
-               $this->assertEquals(
-                       array('TEXT'=>array(0)),
-                       $index
-               );
-               $this->assertEquals(
-                       array(array('tag'=>'TEXT', 'type'=>'complete', 'level'=>1, 'value'=>$tag)),
-                       $values
-               );
-               xml_parser_free($xml_parser);
-       }
-}
diff --git a/tests/src/Util/XmlTest.php b/tests/src/Util/XmlTest.php
new file mode 100644 (file)
index 0000000..ba78e4f
--- /dev/null
@@ -0,0 +1,49 @@
+<?php
+/**
+ * @file tests/src/Util/XmlTest.php
+ */
+namespace Friendica\Test\Util;
+
+use Friendica\Util\XML;
+use PHPUnit\Framework\TestCase;
+
+/**
+ * @brief XML utility test class
+ */
+class XmlTest extends TestCase
+{
+    /**
+       * escape and unescape
+       */
+       public function testEscapeUnescape()
+       {
+               $text="<tag>I want to break\n this!11!<?hard?></tag>";
+               $xml=XML::escape($text);
+               $retext=XML::unescape($text);
+               $this->assertEquals($text, $retext);
+    }
+    
+       /**
+        * escape and put in a document
+        */
+       public function testEscapeDocument()
+       {
+               $tag="<tag>I want to break</tag>";
+               $xml=XML::escape($tag);
+               $text='<text>'.$xml.'</text>';
+               $xml_parser=xml_parser_create();
+               //should be possible to parse it
+               $values=array();
+               $index=array();
+               $this->assertEquals(1, xml_parse_into_struct($xml_parser, $text, $values, $index));
+               $this->assertEquals(
+                       array('TEXT'=>array(0)),
+                       $index
+               );
+               $this->assertEquals(
+                       array(array('tag'=>'TEXT', 'type'=>'complete', 'level'=>1, 'value'=>$tag)),
+                       $values
+               );
+               xml_parser_free($xml_parser);
+       }
+}