1
0
mirror of synced 2025-02-02 21:41:45 +03:00

#6017 adding @group annotation to newly introduced tests

This commit is contained in:
Marco Pivetta 2016-11-27 18:09:51 +01:00
parent 6ad9c9ea04
commit 56598596a4

View File

@ -350,6 +350,9 @@ class UnitOfWorkTest extends OrmTestCase
$this->assertFalse($this->_unitOfWork->isScheduledForInsert($entity2));
}
/**
* @group 6017
*/
public function testClearManagerWithObject()
{
$this->expectException(ORMException::class);
@ -360,6 +363,9 @@ class UnitOfWorkTest extends OrmTestCase
$this->_unitOfWork->clear($entity);
}
/**
* @group 6017
*/
public function testClearManagerWithNullValue()
{
$entity = new Country(456, 'United Kingdom');