Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit de4f54f

Browse filesBrowse files
minor #49253 [PHPUnit 10] Use TestCase suffix for abstract tests in /Tests/ (OskarStark)
This PR was merged into the 6.3 branch. Discussion ---------- [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/` | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | Refs symfony/symfony#49233 | License | MIT | Doc PR | n/a Replaces #49234 Using `Test` suffix is deprecated since PHPUnit 10 Spotted in * symfony/symfony#49233 Commits ------- cb3db968e4 [PHPUnit 10] Use `TestCase` suffix for abstract tests in `/Tests/`
1 parent 3082351 commit de4f54f
Copy full SHA for de4f54f

36 files changed

+53
-49
lines changed

‎Tests/Console/Descriptor/AbstractDescriptorTest.php renamed to ‎Tests/Console/Descriptor/AbstractDescriptorTestCase.php

Copy file name to clipboardExpand all lines: Tests/Console/Descriptor/AbstractDescriptorTestCase.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
use Symfony\Component\Routing\Route;
2525
use Symfony\Component\Routing\RouteCollection;
2626

27-
abstract class AbstractDescriptorTest extends TestCase
27+
abstract class AbstractDescriptorTestCase extends TestCase
2828
{
2929
private $colSize;
3030

‎Tests/Console/Descriptor/JsonDescriptorTest.php

Copy file name to clipboardExpand all lines: Tests/Console/Descriptor/JsonDescriptorTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Bundle\FrameworkBundle\Console\Descriptor\JsonDescriptor;
1515

16-
class JsonDescriptorTest extends AbstractDescriptorTest
16+
class JsonDescriptorTest extends AbstractDescriptorTestCase
1717
{
1818
protected static function getDescriptor()
1919
{

‎Tests/Console/Descriptor/MarkdownDescriptorTest.php

Copy file name to clipboardExpand all lines: Tests/Console/Descriptor/MarkdownDescriptorTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Bundle\FrameworkBundle\Console\Descriptor\MarkdownDescriptor;
1515

16-
class MarkdownDescriptorTest extends AbstractDescriptorTest
16+
class MarkdownDescriptorTest extends AbstractDescriptorTestCase
1717
{
1818
protected static function getDescriptor()
1919
{

‎Tests/Console/Descriptor/TextDescriptorTest.php

Copy file name to clipboardExpand all lines: Tests/Console/Descriptor/TextDescriptorTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\HttpKernel\Debug\FileLinkFormatter;
1616
use Symfony\Component\Routing\Route;
1717

18-
class TextDescriptorTest extends AbstractDescriptorTest
18+
class TextDescriptorTest extends AbstractDescriptorTestCase
1919
{
2020
private static $fileLinkFormatter = null;
2121

‎Tests/Console/Descriptor/XmlDescriptorTest.php

Copy file name to clipboardExpand all lines: Tests/Console/Descriptor/XmlDescriptorTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Bundle\FrameworkBundle\Console\Descriptor\XmlDescriptor;
1515

16-
class XmlDescriptorTest extends AbstractDescriptorTest
16+
class XmlDescriptorTest extends AbstractDescriptorTestCase
1717
{
1818
protected static function getDescriptor()
1919
{

‎Tests/DependencyInjection/Fixtures/php/workflow_not_valid.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflow_not_valid.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
77
'my_workflow' => [
88
'type' => 'state_machine',
99
'supports' => [
10-
FrameworkExtensionTest::class,
10+
FrameworkExtensionTestCase::class,
1111
],
1212
'places' => [
1313
'first',

‎Tests/DependencyInjection/Fixtures/php/workflow_with_guard_expression.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflow_with_guard_expression.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
77
'article' => [
88
'type' => 'workflow',
99
'supports' => [
10-
FrameworkExtensionTest::class,
10+
FrameworkExtensionTestCase::class,
1111
],
1212
'initial_marking' => ['draft'],
1313
'places' => [

‎Tests/DependencyInjection/Fixtures/php/workflow_with_multiple_transitions_with_same_name.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflow_with_multiple_transitions_with_same_name.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
77
'article' => [
88
'type' => 'workflow',
99
'supports' => [
10-
FrameworkExtensionTest::class,
10+
FrameworkExtensionTestCase::class,
1111
],
1212
'initial_marking' => ['draft'],
1313
'places' => [

‎Tests/DependencyInjection/Fixtures/php/workflow_with_no_events_to_dispatch.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflow_with_no_events_to_dispatch.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
@@ -11,7 +11,7 @@
1111
'property' => 'state',
1212
],
1313
'supports' => [
14-
FrameworkExtensionTest::class,
14+
FrameworkExtensionTestCase::class,
1515
],
1616
'events_to_dispatch' => [],
1717
'places' => [

‎Tests/DependencyInjection/Fixtures/php/workflow_with_specified_events_to_dispatch.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflow_with_specified_events_to_dispatch.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
@@ -11,7 +11,7 @@
1111
'property' => 'state',
1212
],
1313
'supports' => [
14-
FrameworkExtensionTest::class,
14+
FrameworkExtensionTestCase::class,
1515
],
1616
'events_to_dispatch' => [
1717
'workflow.leave',

‎Tests/DependencyInjection/Fixtures/php/workflow_with_support_and_support_strategy.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflow_with_support_and_support_strategy.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
77
'my_workflow' => [
88
'type' => 'workflow',
99
'supports' => [
10-
FrameworkExtensionTest::class,
10+
FrameworkExtensionTestCase::class,
1111
],
1212
'support_strategy' => 'foobar',
1313
'places' => [

‎Tests/DependencyInjection/Fixtures/php/workflows.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflows.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest;
3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
44

55
$container->loadFromExtension('framework', [
66
'workflows' => [
77
'article' => [
88
'type' => 'workflow',
99
'supports' => [
10-
FrameworkExtensionTest::class,
10+
FrameworkExtensionTestCase::class,
1111
],
1212
'initial_marking' => ['draft'],
1313
'metadata' => [
@@ -43,7 +43,7 @@
4343
],
4444
'pull_request' => [
4545
'supports' => [
46-
FrameworkExtensionTest::class,
46+
FrameworkExtensionTestCase::class,
4747
],
4848
'initial_marking' => 'start',
4949
'metadata' => [
@@ -102,7 +102,7 @@
102102
'service' => 'workflow_service',
103103
],
104104
'supports' => [
105-
FrameworkExtensionTest::class,
105+
FrameworkExtensionTestCase::class,
106106
],
107107
'places' => [
108108
['name' => 'first'],

‎Tests/DependencyInjection/Fixtures/php/workflows_explicitly_enabled.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflows_explicitly_enabled.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<?php
22

3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
4+
35
$container->loadFromExtension('framework', [
46
'workflows' => [
57
'enabled' => true,
68
'foo' => [
79
'type' => 'workflow',
8-
'supports' => ['Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest'],
10+
'supports' => [FrameworkExtensionTestCase::class],
911
'initial_marking' => ['bar'],
1012
'places' => ['bar', 'baz'],
1113
'transitions' => [

‎Tests/DependencyInjection/Fixtures/php/workflows_explicitly_enabled_named_workflows.php

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/php/workflows_explicitly_enabled_named_workflows.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<?php
22

3+
use Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase;
4+
35
$container->loadFromExtension('framework', [
46
'workflows' => [
57
'enabled' => true,
68
'workflows' => [
79
'type' => 'workflow',
8-
'supports' => ['Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest'],
10+
'supports' => [FrameworkExtensionTestCase::class],
911
'initial_marking' => ['bar'],
1012
'places' => ['bar', 'baz'],
1113
'transitions' => [

‎Tests/DependencyInjection/Fixtures/xml/workflow_not_valid.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflow_not_valid.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<framework:config>
1010
<framework:workflow name="my_workflow" type="state_machine">
11-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
11+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1212
<framework:place name="first" />
1313
<framework:place name="middle" />
1414
<framework:place name="last" />

‎Tests/DependencyInjection/Fixtures/xml/workflow_with_guard_expression.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflow_with_guard_expression.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<framework:config>
1010
<framework:workflow name="article" type="workflow">
1111
<framework:initial-marking>draft</framework:initial-marking>
12-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
12+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1313
<framework:place>draft</framework:place>
1414
<framework:place>wait_for_journalist</framework:place>
1515
<framework:place>approved_by_journalist</framework:place>

‎Tests/DependencyInjection/Fixtures/xml/workflow_with_multiple_transitions_with_same_name.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflow_with_multiple_transitions_with_same_name.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<framework:config>
1010
<framework:workflow name="article" type="workflow">
1111
<framework:initial-marking>draft</framework:initial-marking>
12-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
12+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1313
<framework:place name="draft" />
1414
<framework:place name="wait_for_journalist" />
1515
<framework:place name="approved_by_journalist" />

‎Tests/DependencyInjection/Fixtures/xml/workflow_with_no_events_to_dispatch.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflow_with_no_events_to_dispatch.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<framework:workflow name="my_workflow" type="state_machine">
1111
<framework:initial-marking>one</framework:initial-marking>
1212
<framework:marking-store type="method" property="state" />
13-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
13+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1414
<framework:event-to-dispatch></framework:event-to-dispatch>
1515
<framework:place name="one" />
1616
<framework:place name="two" />

‎Tests/DependencyInjection/Fixtures/xml/workflow_with_specified_events_to_dispatch.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflow_with_specified_events_to_dispatch.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<framework:workflow name="my_workflow" type="state_machine">
1111
<framework:initial-marking>one</framework:initial-marking>
1212
<framework:marking-store type="method" property="state" />
13-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
13+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1414
<framework:event-to-dispatch>workflow.leave</framework:event-to-dispatch>
1515
<framework:event-to-dispatch>workflow.completed</framework:event-to-dispatch>
1616
<framework:place name="one" />

‎Tests/DependencyInjection/Fixtures/xml/workflow_with_support_and_support_strategy.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflow_with_support_and_support_strategy.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<framework:config>
1010
<framework:workflow name="my_workflow" support-strategy="foobar" type="workflow">
11-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
11+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1212
<framework:place name="first" />
1313
<framework:place name="last" />
1414
<framework:transition name="foobar">

‎Tests/DependencyInjection/Fixtures/xml/workflows.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflows.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<framework:audit-trail enabled="true"/>
1212
<framework:initial-marking>draft</framework:initial-marking>
1313
<framework:marking-store type="method" property="state" />
14-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
14+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1515
<framework:place name="draft" />
1616
<framework:place name="wait_for_journalist" />
1717
<framework:place name="approved_by_journalist" />
@@ -45,7 +45,7 @@
4545
<framework:workflow name="pull_request">
4646
<framework:audit-trail enabled="false"/>
4747
<framework:initial-marking>start</framework:initial-marking>
48-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
48+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
4949
<framework:place name="start">
5050
<framework:metadata>
5151
<framework:title>place start title</framework:title>
@@ -96,7 +96,7 @@
9696

9797
<framework:workflow name="service_marking_store_workflow" type="workflow">
9898
<framework:marking-store service="workflow_service"/>
99-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
99+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
100100
<!-- Simple format -->
101101
<framework:place>first</framework:place>
102102
<framework:place>last</framework:place>

‎Tests/DependencyInjection/Fixtures/xml/workflows_explicitly_enabled.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflows_explicitly_enabled.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<framework:config>
99
<framework:workflow enabled="true" name="foo" type="workflow" initial-marking="bar">
10-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
10+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1111
<framework:place>bar</framework:place>
1212
<framework:place>baz</framework:place>
1313
<framework:transition name="bar_baz">

‎Tests/DependencyInjection/Fixtures/xml/workflows_explicitly_enabled_named_workflows.xml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/xml/workflows_explicitly_enabled_named_workflows.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<framework:config>
99
<framework:workflow enabled="true" name="workflows" type="workflow">
1010
<framework:initial-marking>bar</framework:initial-marking>
11-
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework:support>
11+
<framework:support>Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase</framework:support>
1212
<framework:place>bar</framework:place>
1313
<framework:place>baz</framework:place>
1414
<framework:transition name="bar_baz">

‎Tests/DependencyInjection/Fixtures/yml/workflow_not_valid.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflow_not_valid.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ framework:
33
my_workflow:
44
type: state_machine
55
supports:
6-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
6+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
77
places: [first, middle, last]
88
transitions:
99
go:

‎Tests/DependencyInjection/Fixtures/yml/workflow_with_guard_expression.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflow_with_guard_expression.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ framework:
33
article:
44
type: workflow
55
supports:
6-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
6+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
77
initial_marking: [draft]
88
places:
99
- draft

‎Tests/DependencyInjection/Fixtures/yml/workflow_with_multiple_transitions_with_same_name.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflow_with_multiple_transitions_with_same_name.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ framework:
33
article:
44
type: workflow
55
supports:
6-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
6+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
77
initial_marking: [draft]
88
places:
99
- draft

‎Tests/DependencyInjection/Fixtures/yml/workflow_with_no_events_to_dispatch.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflow_with_no_events_to_dispatch.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ framework:
88
type: method
99
property: state
1010
supports:
11-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
11+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
1212
places:
1313
- one
1414
- two

‎Tests/DependencyInjection/Fixtures/yml/workflow_with_specified_events_to_dispatch.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflow_with_specified_events_to_dispatch.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ framework:
88
type: method
99
property: state
1010
supports:
11-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
11+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
1212
places:
1313
- one
1414
- two

‎Tests/DependencyInjection/Fixtures/yml/workflow_with_support_and_support_strategy.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflow_with_support_and_support_strategy.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ framework:
33
my_workflow:
44
type: workflow
55
supports:
6-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
6+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
77
support_strategy: foobar
88
places:
99
- first

‎Tests/DependencyInjection/Fixtures/yml/workflows.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflows.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ framework:
33
article:
44
type: workflow
55
supports:
6-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
6+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
77
initial_marking: [draft]
88
metadata:
99
title: article workflow
@@ -31,7 +31,7 @@ framework:
3131
to: [published]
3232
pull_request:
3333
supports:
34-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
34+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
3535
initial_marking: start
3636
metadata:
3737
title: workflow title
@@ -74,7 +74,7 @@ framework:
7474
marking_store:
7575
service: workflow_service
7676
supports:
77-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
77+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
7878
places:
7979
- { name: first }
8080
- { name: last }

‎Tests/DependencyInjection/Fixtures/yml/workflows_explicitly_enabled.yml

Copy file name to clipboardExpand all lines: Tests/DependencyInjection/Fixtures/yml/workflows_explicitly_enabled.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ framework:
55
foo:
66
type: workflow
77
supports:
8-
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest
8+
- Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTestCase
99
initial_marking: [bar]
1010
places:
1111
- bar

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.