Skip to content

Commit 8a74f4b

Browse files
lmajanogithub-actions[bot]
authored andcommitted
Apply cfformat changes
1 parent 2502b5d commit 8a74f4b

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

system/testing/BaseTestCase.cfc

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
386386
struct eventArguments = {},
387387
boolean renderResults = false,
388388
boolean withExceptionHandling = false,
389-
string domain = cgi.SERVER_NAME
389+
string domain = cgi.SERVER_NAME
390390
){
391391
var handlerResults = "";
392392
var requestContext = getRequestContext();
@@ -585,7 +585,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
585585
* @renderResults If true, then it will try to do the normal rendering procedures and store the rendered content in the RC as cbox_rendered_content
586586
* @withExceptionHandling If true, then ColdBox will process any errors through the exception handling framework instead of just throwing the error. Default: false.
587587
* @domain Override the domain of execution of the request. Default is to use the cgi.server_name variable.
588-
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
588+
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
589589
*/
590590
function request(
591591
string route = "",
@@ -594,8 +594,8 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
594594
string method = "GET",
595595
boolean renderResults = true,
596596
boolean withExceptionHandling = false,
597-
string domain = cgi.SERVER_NAME,
598-
any body = ""
597+
string domain = cgi.SERVER_NAME,
598+
any body = ""
599599
){
600600
// Mock the event context
601601
var mockedEvent = prepareMock( getRequestContext() )
@@ -634,16 +634,16 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
634634
* @renderResults If true, then it will try to do the normal rendering procedures and store the rendered content in the RC as cbox_rendered_content
635635
* @withExceptionHandling If true, then ColdBox will process any errors through the exception handling framework instead of just throwing the error. Default: false.
636636
* @domain Override the domain of execution of the request. Default is to use the cgi.server_name variable.
637-
* @body The body content to be passed in the request, useful for PUT/PATCH requests.
637+
* @body The body content to be passed in the request, useful for PUT/PATCH requests.
638638
*/
639639
function get(
640640
string route = "",
641641
struct params = {},
642642
struct headers = {},
643643
boolean renderResults = true,
644644
boolean withExceptionHandling = false,
645-
string domain = cgi.SERVER_NAME,
646-
any body = ""
645+
string domain = cgi.SERVER_NAME,
646+
any body = ""
647647
){
648648
arguments.method = "GET";
649649
return variables.request( argumentCollection = arguments );
@@ -658,7 +658,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
658658
* @renderResults If true, then it will try to do the normal rendering procedures and store the rendered content in the RC as cbox_rendered_content
659659
* @withExceptionHandling If true, then ColdBox will process any errors through the exception handling framework instead of just throwing the error. Default: false.
660660
* @domain Override the domain of execution of the request. Default is to use the cgi.server_name variable.
661-
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
661+
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
662662
*/
663663
function post(
664664
string route = "",
@@ -667,7 +667,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
667667
boolean renderResults = true,
668668
boolean withExceptionHandling = false,
669669
string domain = cgi.SERVER_NAME,
670-
any body = ""
670+
any body = ""
671671
){
672672
arguments.method = "POST";
673673
return variables.request( argumentCollection = arguments );
@@ -682,7 +682,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
682682
* @renderResults If true, then it will try to do the normal rendering procedures and store the rendered content in the RC as cbox_rendered_content
683683
* @withExceptionHandling If true, then ColdBox will process any errors through the exception handling framework instead of just throwing the error. Default: false.
684684
* @domain Override the domain of execution of the request. Default is to use the cgi.server_name variable.
685-
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
685+
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
686686
*/
687687
function put(
688688
string route = "",
@@ -691,7 +691,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
691691
boolean renderResults = true,
692692
boolean withExceptionHandling = false,
693693
string domain = cgi.SERVER_NAME,
694-
any body = ""
694+
any body = ""
695695
){
696696
arguments.method = "PUT";
697697
return variables.request( argumentCollection = arguments );
@@ -706,7 +706,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
706706
* @renderResults If true, then it will try to do the normal rendering procedures and store the rendered content in the RC as cbox_rendered_content
707707
* @withExceptionHandling If true, then ColdBox will process any errors through the exception handling framework instead of just throwing the error. Default: false.
708708
* @domain Override the domain of execution of the request. Default is to use the cgi.server_name variable.
709-
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
709+
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
710710
*/
711711
function patch(
712712
string route = "",
@@ -715,7 +715,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
715715
boolean renderResults = true,
716716
boolean withExceptionHandling = false,
717717
string domain = cgi.SERVER_NAME,
718-
any body = ""
718+
any body = ""
719719
){
720720
arguments.method = "PATCH";
721721
return variables.request( argumentCollection = arguments );
@@ -730,7 +730,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
730730
* @renderResults If true, then it will try to do the normal rendering procedures and store the rendered content in the RC as cbox_rendered_content
731731
* @withExceptionHandling If true, then ColdBox will process any errors through the exception handling framework instead of just throwing the error. Default: false.
732732
* @domain Override the domain of execution of the request. Default is to use the cgi.server_name variable.
733-
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
733+
* @body The body content to be passed in the request, useful for POST/PUT/PATCH requests.
734734
*/
735735
function delete(
736736
string route = "",
@@ -739,7 +739,7 @@ component extends="testbox.system.compat.framework.TestCase" accessors="true" {
739739
boolean renderResults = true,
740740
boolean withExceptionHandling = false,
741741
string domain = cgi.SERVER_NAME,
742-
any body = ""
742+
any body = ""
743743
){
744744
arguments.method = "DELETE";
745745
return variables.request( argumentCollection = arguments );

0 commit comments

Comments
 (0)