Skip to content

Commit

Permalink
zendframework#6266 - Explicitly defining test case variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed May 20, 2014
1 parent cb028de commit 932f47c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion tests/ZendTest/Mvc/Service/ServiceManagerConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
*/
class ServiceManagerConfigTest extends TestCase
{
public function setUp()
/**
* @var ServiceManagerConfig
*/
private $config;

/**
* @var ServiceManager
*/
private $services;

/**
* {@inheritDoc}
*/
protected function setUp()
{
$this->config = new ServiceManagerConfig();
$this->services = new ServiceManager();
Expand Down

0 comments on commit 932f47c

Please sign in to comment.