From 29fc6fcdb0ea7f2c776aa9250cd0ea90acf56d02 Mon Sep 17 00:00:00 2001 From: Enzo <enzo@localhost.localdomain> Date: Sun, 12 Nov 2017 18:59:25 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20/doc=20&=20/tests/res.=20D=C3=A9bu?= =?UTF-8?q?t=20de=20d=C3=A9tection=20de=20sign.=20bas=C3=A9e=20sur=20PHPWe?= =?UTF-8?q?bshellDetector?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/UtilTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/UtilTest.php b/tests/UtilTest.php index 2bbebd9..3a13aa2 100644 --- a/tests/UtilTest.php +++ b/tests/UtilTest.php @@ -21,28 +21,28 @@ class UtilTest extends TestCase public function testRemoveCRLF() { foreach ($this->strings as $string) { - $this->assertTrue(removeCRLF($string) !== $string); + $this->assertTrue(\AnalyzerNS\removeCRLF($string) !== $string); } } public function testRemoveMultiWhiteSpaces() { foreach ($this->strings as $string) { - $this->assertTrue(removeMultiWhiteSpaces($string) !== $string); + $this->assertTrue(\AnalyzerNS\removeMultiWhiteSpaces($string) !== $string); } } public function testRemoveAllWhiteSpaces() { foreach ($this->strings as $string) { - $this->assertTrue(removeAllWhiteSpaces($string) !== $string); + $this->assertTrue(\AnalyzerNS\removeAllWhiteSpaces($string) !== $string); } } public function testRemoveWhiteSpacesOutsideString() { foreach ($this->strings as $string) { - $this->assertTrue(removeWhiteSpacesOutsideString(token_get_all($string)) !== $string); + $this->assertTrue(\AnalyzerNS\removeWhiteSpacesOutsideString(token_get_all($string)) !== $string); } } } -- GitLab