Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit fa3cd9f

Browse files
committed
Merge pull request #9 from levelfivehub/feature/add-covers-to-unit-tests
Added in covers annotation to the unit tests
2 parents d2c8b98 + 552bd67 commit fa3cd9f

17 files changed

+17
-0
lines changed

test/Config/SessionConfigTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/**
1515
* @group Zend_Session
1616
* @runTestsInSeparateProcesses
17+
* @covers Zend\Session\Config\SessionConfig
1718
*/
1819
class SessionConfigTest extends \PHPUnit_Framework_TestCase
1920
{

test/Config/StandardConfigTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @group Zend_Session
16+
* @covers Zend\Session\Config\StandardConfig
1617
*/
1718
class StandardConfigTest extends \PHPUnit_Framework_TestCase
1819
{

test/ContainerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
/**
1717
* @group Zend_Session
18+
* @covers Zend\Session\Container
1819
*/
1920
class ContainerTest extends \PHPUnit_Framework_TestCase
2021
{

test/SaveHandler/CacheTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
*
2020
* @group Zend_Session
2121
* @group Zend_Cache
22+
* @covers Zend\Session\SaveHandler\Cache
2223
*/
2324
class CacheTest extends \PHPUnit_Framework_TestCase
2425
{

test/SaveHandler/DbTableGatewayOptionsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* Unit testing for DbTableGatewayOptions
1616
*
1717
* @group Zend_Session
18+
* @covers Zend\Session\SaveHandler\DbTableGatewayOptions
1819
*/
1920
class DbTableGatewayOptionsTest extends \PHPUnit_Framework_TestCase
2021
{

test/SaveHandler/DbTableGatewayTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
*
2121
* @group Zend_Session
2222
* @group Zend_Db_Table
23+
* @covers Zend\Session\SaveHandler\DbTableGateway
2324
*/
2425
class DbTableGatewayTest extends \PHPUnit_Framework_TestCase
2526
{

test/SaveHandler/MongoDBOptionsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
/**
1616
* @group Zend_Session
17+
* @covers Zend\Session\SaveHandler\MongoDbOptions
1718
*/
1819
class MongoDBOptionsTest extends \PHPUnit_Framework_TestCase
1920
{

test/SaveHandler/MongoDBTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
/**
1717
* @group Zend_Session
18+
* @covers Zend\Session\SaveHandler\MongoDb
1819
*/
1920
class MongoDBTest extends \PHPUnit_Framework_TestCase
2021
{

test/Service/ContainerAbstractServiceFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
/**
1616
* @group Zend_Session
17+
* @covers Zend\Session\Service\ContainerAbstractServiceFactory
1718
*/
1819
class ContainerAbstractServiceFactoryTest extends \PHPUnit_Framework_TestCase
1920
{

test/Service/SessionConfigFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
/**
1515
* @group Zend_Session
16+
* @covers Zend\Session\Service\SessionConfigFactory
1617
*/
1718
class SessionConfigFactoryTest extends \PHPUnit_Framework_TestCase
1819
{

0 commit comments

Comments
 (0)