Skip to content

Commit d4c8c13

Browse files
minor #16744 Forward compatibility with AbstractLayout* 2.8 tests (nicolas-grekas)
This PR was merged into the 2.7 branch. Discussion ---------- Forward compatibility with AbstractLayout* 2.8 tests | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Related to #16031 Commits ------- ef61e54 Forward compatibility with AbstractLayout* 2.8 tests
2 parents beb8525 + ef61e54 commit d4c8c13

File tree

6 files changed

+160
-0
lines changed

6 files changed

+160
-0
lines changed

src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3HorizontalLayoutTest.php

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,39 @@ protected function setTheme(FormView $view, array $themes)
115115
{
116116
$this->extension->renderer->setTheme($view, $themes);
117117
}
118+
119+
public function testRange()
120+
{
121+
// No-op for forward compatibility with AbstractLayoutTest 2.8
122+
}
123+
124+
public function testRangeWithMinMaxValues()
125+
{
126+
// No-op for forward compatibility with AbstractLayoutTest 2.8
127+
}
128+
129+
public function testLabelWithoutTranslationOnButton()
130+
{
131+
// No-op for forward compatibility with AbstractLayoutTest 2.8
132+
}
133+
134+
public function testSingleChoiceWithPlaceholderWithoutTranslation()
135+
{
136+
// No-op for forward compatibility with AbstractLayoutTest 2.8
137+
}
138+
139+
public function testSingleChoiceExpandedWithPlaceholderWithoutTranslation()
140+
{
141+
// No-op for forward compatibility with AbstractLayoutTest 2.8
142+
}
143+
144+
public function testButtonlabelWithoutTranslation()
145+
{
146+
// No-op for forward compatibility with AbstractLayoutTest 2.8
147+
}
148+
149+
public function testAttributesNotTranslatedWhenTranslationDomainIsFalse()
150+
{
151+
// No-op for forward compatibility with AbstractLayoutTest 2.8
152+
}
118153
}

src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,29 @@ public function testRangeWithMinMaxValues()
125125
{
126126
// No-op for forward compatibility with AbstractLayoutTest 2.8
127127
}
128+
129+
public function testLabelWithoutTranslationOnButton()
130+
{
131+
// No-op for forward compatibility with AbstractLayoutTest 2.8
132+
}
133+
134+
public function testSingleChoiceWithPlaceholderWithoutTranslation()
135+
{
136+
// No-op for forward compatibility with AbstractLayoutTest 2.8
137+
}
138+
139+
public function testSingleChoiceExpandedWithPlaceholderWithoutTranslation()
140+
{
141+
// No-op for forward compatibility with AbstractLayoutTest 2.8
142+
}
143+
144+
public function testButtonlabelWithoutTranslation()
145+
{
146+
// No-op for forward compatibility with AbstractLayoutTest 2.8
147+
}
148+
149+
public function testAttributesNotTranslatedWhenTranslationDomainIsFalse()
150+
{
151+
// No-op for forward compatibility with AbstractLayoutTest 2.8
152+
}
128153
}

src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,4 +218,29 @@ public function testRangeWithMinMaxValues()
218218
{
219219
// No-op for forward compatibility with AbstractLayoutTest 2.8
220220
}
221+
222+
public function testLabelWithoutTranslationOnButton()
223+
{
224+
// No-op for forward compatibility with AbstractLayoutTest 2.8
225+
}
226+
227+
public function testSingleChoiceWithPlaceholderWithoutTranslation()
228+
{
229+
// No-op for forward compatibility with AbstractLayoutTest 2.8
230+
}
231+
232+
public function testSingleChoiceExpandedWithPlaceholderWithoutTranslation()
233+
{
234+
// No-op for forward compatibility with AbstractLayoutTest 2.8
235+
}
236+
237+
public function testButtonlabelWithoutTranslation()
238+
{
239+
// No-op for forward compatibility with AbstractLayoutTest 2.8
240+
}
241+
242+
public function testAttributesNotTranslatedWhenTranslationDomainIsFalse()
243+
{
244+
// No-op for forward compatibility with AbstractLayoutTest 2.8
245+
}
221246
}

src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionTableLayoutTest.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,29 @@ public function testRangeWithMinMaxValues()
126126
{
127127
// No-op for forward compatibility with AbstractLayoutTest 2.8
128128
}
129+
130+
public function testLabelWithoutTranslationOnButton()
131+
{
132+
// No-op for forward compatibility with AbstractLayoutTest 2.8
133+
}
134+
135+
public function testSingleChoiceWithPlaceholderWithoutTranslation()
136+
{
137+
// No-op for forward compatibility with AbstractLayoutTest 2.8
138+
}
139+
140+
public function testSingleChoiceExpandedWithPlaceholderWithoutTranslation()
141+
{
142+
// No-op for forward compatibility with AbstractLayoutTest 2.8
143+
}
144+
145+
public function testButtonlabelWithoutTranslation()
146+
{
147+
// No-op for forward compatibility with AbstractLayoutTest 2.8
148+
}
149+
150+
public function testAttributesNotTranslatedWhenTranslationDomainIsFalse()
151+
{
152+
// No-op for forward compatibility with AbstractLayoutTest 2.8
153+
}
129154
}

src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,29 @@ public function testRangeWithMinMaxValues()
138138
{
139139
// No-op for forward compatibility with AbstractLayoutTest 2.8
140140
}
141+
142+
public function testLabelWithoutTranslationOnButton()
143+
{
144+
// No-op for forward compatibility with AbstractLayoutTest 2.8
145+
}
146+
147+
public function testSingleChoiceWithPlaceholderWithoutTranslation()
148+
{
149+
// No-op for forward compatibility with AbstractLayoutTest 2.8
150+
}
151+
152+
public function testSingleChoiceExpandedWithPlaceholderWithoutTranslation()
153+
{
154+
// No-op for forward compatibility with AbstractLayoutTest 2.8
155+
}
156+
157+
public function testButtonlabelWithoutTranslation()
158+
{
159+
// No-op for forward compatibility with AbstractLayoutTest 2.8
160+
}
161+
162+
public function testAttributesNotTranslatedWhenTranslationDomainIsFalse()
163+
{
164+
// No-op for forward compatibility with AbstractLayoutTest 2.8
165+
}
141166
}

src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperTableLayoutTest.php

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,29 @@ public function testRangeWithMinMaxValues()
125125
{
126126
// No-op for forward compatibility with AbstractLayoutTest 2.8
127127
}
128+
129+
public function testLabelWithoutTranslationOnButton()
130+
{
131+
// No-op for forward compatibility with AbstractLayoutTest 2.8
132+
}
133+
134+
public function testSingleChoiceWithPlaceholderWithoutTranslation()
135+
{
136+
// No-op for forward compatibility with AbstractLayoutTest 2.8
137+
}
138+
139+
public function testSingleChoiceExpandedWithPlaceholderWithoutTranslation()
140+
{
141+
// No-op for forward compatibility with AbstractLayoutTest 2.8
142+
}
143+
144+
public function testButtonlabelWithoutTranslation()
145+
{
146+
// No-op for forward compatibility with AbstractLayoutTest 2.8
147+
}
148+
149+
public function testAttributesNotTranslatedWhenTranslationDomainIsFalse()
150+
{
151+
// No-op for forward compatibility with AbstractLayoutTest 2.8
152+
}
128153
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy