File tree 3 files changed +16
-0
lines changed
3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ final class GH6682Test extends OrmFunctionalTestCase
12
12
*/
13
13
public function testIssue () : void
14
14
{
15
+ self ::markTestIncomplete (
16
+ '@guilhermeblanco, in #6683 we added allocationSize/initialValue as to the sequence definition but with the '
17
+ . ' changes you have made I am not sure if we should rather test this relying on the mapping drivers instead '
18
+ );
19
+
15
20
$ parsedDefinition = [
16
21
'sequenceName ' => 'test_sequence ' ,
17
22
'allocationSize ' => '' ,
Original file line number Diff line number Diff line change @@ -1407,6 +1407,12 @@ public function testManyToManySelfReferencingNamingStrategyDefaults()
1407
1407
*/
1408
1408
public function testQuotedSequenceName () : void
1409
1409
{
1410
+ self ::markTestIncomplete (
1411
+ '@guilhermeblanco, in #6683 we added allocationSize/initialValue as to the sequence definition but with the '
1412
+ . ' changes you have made I am not sure if the "initialValue" should still be verified here or if it should '
1413
+ . ' part of the metadata drivers '
1414
+ );
1415
+
1410
1416
$ cm = new ClassMetadata (CMS \CmsUser::class, $ this ->metadataBuildingContext );
1411
1417
$ cm ->setTable (new Mapping \TableMetadata ('cms_users ' ));
1412
1418
Original file line number Diff line number Diff line change @@ -218,6 +218,11 @@ public function testChangeTrackingNotify()
218
218
219
219
public function testChangeTrackingNotifyIndividualCommit ()
220
220
{
221
+ self ::markTestIncomplete (
222
+ '@guilhermeblanco, this test was added directly on master#a16dc65cd206aed67a01a19f01f6318192b826af and '
223
+ . ' since we do not support committing individual entities I think it is invalid now... '
224
+ );
225
+
221
226
$ persister = new EntityPersisterMock ($ this ->emMock , $ this ->emMock ->getClassMetadata ("Doctrine\Tests\ORM\NotifyChangedEntity " ));
222
227
$ this ->unitOfWork ->setEntityPersister ('Doctrine\Tests\ORM\NotifyChangedEntity ' , $ persister );
223
228
$ itemPersister = new EntityPersisterMock ($ this ->emMock , $ this ->emMock ->getClassMetadata ("Doctrine\Tests\ORM\NotifyChangedRelatedItem " ));
You can’t perform that action at this time.
0 commit comments