Completed
Pull Request — master (#6734)
by Daniel
10:51
created
tests/php/View/Parsers/ShortcodeParserTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -208,6 +208,10 @@
 block discarded – undo
208 208
         $this->assertEquals('', $this->parser->parse('[test_shortcode][test_shortcode]'));
209 209
     }
210 210
 
211
+    /**
212
+     * @param string $a
213
+     * @param string $b
214
+     */
211 215
     protected function assertEqualsIgnoringWhitespace($a, $b, $message = null)
212 216
     {
213 217
         $this->assertEquals(preg_replace('/\s+/', '', $a), preg_replace('/\s+/', '', $b), $message);
Please login to merge, or discard this patch.
tests/php/View/RequirementsTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -1048,6 +1048,10 @@
 block discarded – undo
1048 1048
         }
1049 1049
     }
1050 1050
 
1051
+    /**
1052
+     * @param Requirements_Backend $backend
1053
+     * @param string $type
1054
+     */
1051 1055
     public function assertFileNotIncluded($backend, $type, $files)
1052 1056
     {
1053 1057
         $includedFiles = $this->getBackendFiles($backend, $type);
Please login to merge, or discard this patch.