We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent61b0787 commiteb4193fCopy full SHA for eb4193f
components/console/helpers/dialoghelper.rst
@@ -99,7 +99,7 @@ in the last argument. Using ``false`` means the amount of attempts is infinite.
99
The user will be asked as long as he provides an invalid answer and will only
100
be able to proceed if her input is valid.
101
102
-Testing acommand which expects input
+Testing aCommand which expects input
103
-------------------------------------
104
105
If you want to write a unit test for a command which expects some kind of input
@@ -133,7 +133,7 @@ from the command line, you need to overwrite the HelperSet used by the command::
133
return $stream;
134
}
135
136
-By setting the inputStream of the `DialogHelper`, youdo the same the
+By setting the inputStream of the ``DialogHelper``, youimitate what the
137
console would do internally with all user input through the cli. This way
138
you can test any user interaction (even complex ones) by passing an appropriate
139
input stream.