Skip to content

Commit 9d13e46

Browse files
committed
Add setConfigUseRequestStack and setConfigUseTranslator methods
1 parent deeded5 commit 9d13e46

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tests/Functional/Command/Base/BaseFunctionalCommandTest.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,26 @@ protected function setConfigUseTwig(): self
183183
return $this;
184184
}
185185

186+
/**
187+
* @return self
188+
*/
189+
protected function setConfigUseRequestStack(): self
190+
{
191+
$this->useRequestStack = true;
192+
193+
return $this;
194+
}
195+
196+
/**
197+
* @return self
198+
*/
199+
protected function setConfigUseTranslator(): self
200+
{
201+
$this->useTranslator = true;
202+
203+
return $this;
204+
}
205+
186206
/**
187207
* Sets up the test case.
188208
*

0 commit comments

Comments
 (0)