minor #28348 Fix usage of setUp in tests (3.4) (fabpot)

This PR was merged into the 3.4 branch.

Discussion
----------

Fix usage of setUp in tests (3.4)

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | no
| New feature?  | no <!-- don't forget to update src/**/CHANGELOG.md files -->
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| License       | MIT

<!--
Write a short README entry for your feature/bugfix here (replace this comment block.)
This will help people understand your PR and can be used as a start of the Doc PR.
Additionally:
 - Bug fixes must be submitted against the lowest branch where they apply
   (lowest branches are regularly merged to upper ones so they get the fixes too).
 - Features and deprecations must be submitted against the master branch.
-->

Commits
-------

298782841c fixed usage of setUp in tests
This commit is contained in:
Fabien Potencier 2018-09-04 08:28:11 +02:00
commit 9a97ea819a
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ class CombinedStoreTest extends AbstractStoreTest
/** @var CombinedStore */
private $store;
public function setup()
protected function setUp()
{
$this->strategy = $this->getMockBuilder(StrategyInterface::class)->getMock();
$this->store1 = $this->getMockBuilder(StoreInterface::class)->getMock();

View File

@ -22,7 +22,7 @@ class ConsensusStrategyTest extends TestCase
/** @var ConsensusStrategy */
private $strategy;
public function setup()
protected function setUp()
{
$this->strategy = new ConsensusStrategy();
}

View File

@ -22,7 +22,7 @@ class UnanimousStrategyTest extends TestCase
/** @var UnanimousStrategy */
private $strategy;
public function setup()
protected function setUp()
{
$this->strategy = new UnanimousStrategy();
}