Skip to content
Snippets Groups Projects
Commit 4d08bf58 authored by Helmut Hummel's avatar Helmut Hummel Committed by Georg Ringer
Browse files

[BUGFIX] Adjust visibility of setUp() and tearDown()

Protected is the correct visibility for those functions, as
given by the base class.

Resolves: #64642
Releases: master
Change-Id: Ifb5233f391dfa348d1cbf96baf8999f3cda33d63
Reviewed-on: http://review.typo3.org/43511


Reviewed-by: default avatarNicole Cordes <typo3@cordes.co>
Tested-by: default avatarNicole Cordes <typo3@cordes.co>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: default avatarMichael Oehlhof <typo3@oehlhof.de>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent 78e20942
Branches
Tags
No related merge requests found
Showing
with 20 additions and 20 deletions
......@@ -35,7 +35,7 @@ class FormDataCompilerTest extends UnitTestCase {
*/
protected $formDataGroupProphecy;
public function setUp() {
protected function setUp() {
$this->formDataGroupProphecy = $this->prophesize(FormDataGroupInterface::class);
$this->subject = new FormDataCompiler($this->formDataGroupProphecy->reveal());
}
......
......@@ -32,7 +32,7 @@ class FlexFormSegmentTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new FlexFormSegment();
}
......
......@@ -32,7 +32,7 @@ class OnTheFlyTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new OnTheFly();
}
......
......@@ -32,7 +32,7 @@ class TcaDatabaseRecordTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new TcaDatabaseRecord();
}
......
......@@ -36,7 +36,7 @@ class DatabaseEditRowTest extends UnitTestCase {
*/
protected $dbProphecy;
public function setUp() {
protected function setUp() {
$this->dbProphecy = $this->prophesize(DatabaseConnection::class);
$GLOBALS['TYPO3_DB'] = $this->dbProphecy->reveal();
......
......@@ -27,7 +27,7 @@ class DatabaseEffectivePidTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseEffectivePid();
}
......
......@@ -38,7 +38,7 @@ class DatabaseLanguageRowsTest extends UnitTestCase {
*/
protected $dbProphecy;
public function setUp() {
protected function setUp() {
$this->dbProphecy = $this->prophesize(DatabaseConnection::class);
$GLOBALS['TYPO3_DB'] = $this->dbProphecy->reveal();
......
......@@ -35,7 +35,7 @@ class DatabasePageLanguageOverlayRowsTest extends UnitTestCase {
*/
protected $dbProphecy;
public function setUp() {
protected function setUp() {
$this->dbProphecy = $this->prophesize(DatabaseConnection::class);
$GLOBALS['TYPO3_DB'] = $this->dbProphecy->reveal();
......
......@@ -35,7 +35,7 @@ class DatabaseParentPageRowTest extends UnitTestCase {
*/
protected $dbProphecy;
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseParentPageRow();
$this->dbProphecy = $this->prophesize(DatabaseConnection::class);
......
......@@ -35,7 +35,7 @@ class DatabaseRecordTypeValueTest extends UnitTestCase {
*/
protected $dbProphecy;
public function setUp() {
protected function setUp() {
$this->dbProphecy = $this->prophesize(DatabaseConnection::class);
$GLOBALS['TYPO3_DB'] = $this->dbProphecy->reveal();
......
......@@ -49,7 +49,7 @@ class DatabaseRowDateTimeFieldsTest extends UnitTestCase {
],
);
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseRowDateTimeFields();
$this->dbProphecy = $this->prophesize(DatabaseConnection::class);
$GLOBALS['TYPO3_DB'] = $this->dbProphecy->reveal();
......
......@@ -27,7 +27,7 @@ class DatabaseRowDefaultValuesTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseRowDefaultValues();
}
......
......@@ -27,7 +27,7 @@ class DatabaseRowInitializeNewTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseRowInitializeNew();
}
......
......@@ -27,7 +27,7 @@ class DatabaseUniqueUidNewRowTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseUniqueUidNewRow();
}
......
......@@ -43,7 +43,7 @@ class DatabaseUserPermissionCheckTest extends UnitTestCase {
*/
protected $beUserProphecy;
public function setUp() {
protected function setUp() {
$this->subject = new DatabaseUserPermissionCheck();
$this->beUserProphecy = $this->prophesize(BackendUserAuthentication::class);
......
......@@ -29,7 +29,7 @@ class EvaluateDisplayConditionsTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new EvaluateDisplayConditions();
}
......
......@@ -27,7 +27,7 @@ class InitializeProcessedTcaTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new InitializeProcessedTca();
}
......
......@@ -27,7 +27,7 @@ class PageTsConfigMergedTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new PageTsConfigMerged();
}
......
......@@ -27,7 +27,7 @@ class ParentPageTcaTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new ParentPageTca();
}
......
......@@ -27,7 +27,7 @@ class TableTcaTest extends UnitTestCase {
*/
protected $subject;
public function setUp() {
protected function setUp() {
$this->subject = new TableTca();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment