File tree Expand file tree Collapse file tree
user_guide_src/source/testing Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ Requesting a Page
2929Essentially, feature tests simply allows you to call an endpoint on your application and get the results back.
3030To do this, you use the ``call() `` method.
3131
32- 1. The first parameter is the HTTP method to use (most frequently either GET or POST).
32+ 1. The first parameter is the HTTP method to use (most frequently either `` GET `` or `` POST `` ).
33332. The second parameter is the URI path on your site to test.
34343. The third parameter ``$params `` accepts an array that is used to populate the
3535 superglobal variables for the HTTP verb you are using. So, a method of **GET **
36- would have the ** $_GET ** variable populated, while a **POST ** request would
37- have the ** $_POST ** array populated. The ``$params `` is also used in
36+ would have the `` $_GET `` variable populated, while a **POST ** request would
37+ have the `` $_POST `` array populated. The ``$params `` is also used in
3838 :ref: `feature-formatting-the-request `.
3939
4040 .. note :: The ``$params`` array does not make sense for every HTTP verb, but is
You can’t perform that action at this time.
0 commit comments