@@ -72,7 +72,7 @@ public function testFactoryConfiguresPluginManagerUnderServiceManagerV2()
72
72
$ this ->assertSame ($ element , $ elements ->get ('test ' ));
73
73
}
74
74
75
- public function testConfiguresValidatorServicesWhenFound ()
75
+ public function testConfiguresFormElementsServicesWhenFound ()
76
76
{
77
77
$ element = $ this ->prophesize (ElementInterface::class)->reveal ();
78
78
$ config = [
@@ -105,7 +105,7 @@ public function testConfiguresValidatorServicesWhenFound()
105
105
$ this ->assertSame ($ element , $ elements ->get ('test-too ' ));
106
106
}
107
107
108
- public function testDoesNotConfigureValidatorServicesWhenServiceListenerPresent ()
108
+ public function testDoesNotConfigureFormElementsServicesWhenServiceListenerPresent ()
109
109
{
110
110
$ element = $ this ->prophesize (ElementInterface::class)->reveal ();
111
111
$ config = [
@@ -136,7 +136,7 @@ public function testDoesNotConfigureValidatorServicesWhenServiceListenerPresent(
136
136
$ this ->assertFalse ($ elements ->has ('test-too ' ));
137
137
}
138
138
139
- public function testDoesNotConfigureValidatorServicesWhenConfigServiceNotPresent ()
139
+ public function testDoesNotConfigureFormElementsServicesWhenConfigServiceNotPresent ()
140
140
{
141
141
$ container = $ this ->prophesize (ServiceLocatorInterface::class);
142
142
$ container ->willImplement (ContainerInterface::class);
@@ -151,7 +151,7 @@ public function testDoesNotConfigureValidatorServicesWhenConfigServiceNotPresent
151
151
$ this ->assertInstanceOf (FormElementManager::class, $ elements );
152
152
}
153
153
154
- public function testDoesNotConfigureValidatorServicesWhenConfigServiceDoesNotContainValidatorsConfig ()
154
+ public function testDoesNotConfigureFormElementServicesWhenConfigServiceDoesNotContainFormElementsConfig ()
155
155
{
156
156
$ container = $ this ->prophesize (ServiceLocatorInterface::class);
157
157
$ container ->willImplement (ContainerInterface::class);
0 commit comments