From d8849f04cd2b4e199739b82d0c5e91eda851306f Mon Sep 17 00:00:00 2001 From: TomasVotruba Date: Tue, 8 Aug 2017 01:20:16 +0200 Subject: [PATCH] add uncommented tests --- .../Nette/NetteObjectToSmartTraitRector/Test.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/Rector/Contrib/Nette/NetteObjectToSmartTraitRector/Test.php b/tests/Rector/Contrib/Nette/NetteObjectToSmartTraitRector/Test.php index 3f9cb5e3e3b..ea2b3c430b9 100644 --- a/tests/Rector/Contrib/Nette/NetteObjectToSmartTraitRector/Test.php +++ b/tests/Rector/Contrib/Nette/NetteObjectToSmartTraitRector/Test.php @@ -12,13 +12,13 @@ final class Test extends AbstractReconstructorTestCase __DIR__ . '/wrong/wrong.php.inc', __DIR__ . '/correct/correct.php.inc' ); - // $this->doTestFileMatchesExpectedContent( -// __DIR__ . '/wrong/wrong2.php.inc', -// __DIR__ . '/correct/correct2.php.inc' -// ); -// $this->doTestFileMatchesExpectedContent( -// __DIR__ . '/wrong/wrong3.php.inc', -// __DIR__ . '/correct/correct3.php.inc' -// ); + $this->doTestFileMatchesExpectedContent( + __DIR__ . '/wrong/wrong2.php.inc', + __DIR__ . '/correct/correct2.php.inc' + ); + $this->doTestFileMatchesExpectedContent( + __DIR__ . '/wrong/wrong3.php.inc', + __DIR__ . '/correct/correct3.php.inc' + ); } }