Skip to content

Commit 1e94be0

Browse files
committed
Merge branch 'development'
2 parents 51d42e5 + 73603c4 commit 1e94be0

34 files changed

+67
-222
lines changed

tests/specs/FrameworkSuperTypeTest.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component extends="coldbox.system.testing.BaseTestCase" appMapping="/cbTestHarness" {
1+
component extends="tests.resources.BaseIntegrationTest"{
22

33
/*********************************** LIFE CYCLE Methods ***********************************/
44

tests/specs/cache/providers/CFProviderTest.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component name = "cacheTest" extends = "coldbox.system.testing.BaseTestCase" output = "false" skip = "isAdobe"{
1+
component extends = "tests.resources.BaseIntegrationTest" skip = "isAdobe"{
22
this.loadColdBox = false;
33

44
boolean function isAdobe(){

tests/specs/cache/providers/CacheBoxProviderTest.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component extends = "coldbox.system.testing.BaseTestCase"{
1+
component extends = "tests.resources.BaseIntegrationTest"{
22
this.loadColdBox = false;
33

44
function setup(){

tests/specs/cache/providers/LuceeProviderTest.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
component extends = "coldbox.system.testing.BaseTestCase" skip = "isLucee"{
1+
component extends = "tests.resources.BaseIntegrationTest" skip = "isLucee"{
22
this.loadColdBox = false;
33

44
boolean function isLucee(){

tests/specs/core/conversion/XMLConverterTest.cfc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<cfcomponent extends="coldbox.system.testing.BaseTestCase">
2-
<cfscript>
1+
component extends="tests.resources.BaseIntegrationTest"{
2+
33
this.loadColdBox = false;
44

55
function setup(){
@@ -124,5 +124,5 @@
124124
// debug(results);
125125
assertTrue( isXML( results ) );
126126
}
127-
</cfscript>
128-
</cfcomponent>
127+
128+
}

tests/specs/integration/EventCaching.cfc

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
1-
/*******************************************************************************
2-
* Integration Test as BDD
3-
*
4-
* Extends the integration class: coldbox.system.testing.BaseTestCase
5-
*
6-
* so you can test your ColdBox application headlessly. The 'appMapping' points by default to
7-
* the '/root' mapping created in the test folder Application.cfc. Please note that this
8-
* Application.cfc must mimic the real one in your root, including ORM settings if needed.
9-
*
10-
* The 'execute()' method is used to execute a ColdBox event, with the following arguments
11-
* * event : the name of the event
12-
* * private : if the event is private or not
13-
* * prePostExempt : if the event needs to be exempt of pre post interceptors
14-
* * eventArguments : The struct of args to pass to the event
15-
* * renderResults : Render back the results of the event
16-
*******************************************************************************/
17-
component
1+
component
182
extends="tests.resources.BaseIntegrationTest"
193
{
204

tests/specs/integration/EventExecutions.cfc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*******************************************************************************
2-
* Integration Test as BDD
3-
*
4-
* Extends the integration class: coldbox.system.testing.BaseTestCase
5-
*
6-
* so you can test your ColdBox application headlessly. The 'appMapping' points by default to
7-
* the '/root' mapping created in the test folder Application.cfc. Please note that this
8-
* Application.cfc must mimic the real one in your root, including ORM settings if needed.
9-
*
10-
* The 'execute()' method is used to execute a ColdBox event, with the following arguments
11-
* * event : the name of the event
12-
* * private : if the event is private or not
13-
* * prePostExempt : if the event needs to be exempt of pre post interceptors
14-
* * eventArguments : The struct of args to pass to the event
15-
* * renderResults : Render back the results of the event
16-
*******************************************************************************/
171
component extends="tests.resources.BaseIntegrationTest"{
182

193
/*********************************** LIFE CYCLE Methods ***********************************/

tests/specs/integration/ExecutorRegistrations.cfc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*******************************************************************************
2-
* Integration Test as BDD
3-
*
4-
* Extends the integration class: coldbox.system.testing.BaseTestCase
5-
*
6-
* so you can test your ColdBox application headlessly. The 'appMapping' points by default to
7-
* the '/root' mapping created in the test folder Application.cfc. Please note that this
8-
* Application.cfc must mimic the real one in your root, including ORM settings if needed.
9-
*
10-
* The 'execute()' method is used to execute a ColdBox event, with the following arguments
11-
* * event : the name of the event
12-
* * private : if the event is private or not
13-
* * prePostExempt : if the event needs to be exempt of pre post interceptors
14-
* * eventArguments : The struct of args to pass to the event
15-
* * renderResults : Render back the results of the event
16-
*******************************************************************************/
171
component
182
extends="tests.resources.BaseIntegrationTest"
193
{

tests/specs/integration/MainTests.cfc

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
1-
/*******************************************************************************
2-
* Integration Test as BDD
3-
*
4-
* Extends the integration class: coldbox.system.testing.BaseTestCase
5-
*
6-
* so you can test your ColdBox application headlessly. The 'appMapping' points by default to
7-
* the '/root' mapping created in the test folder Application.cfc. Please note that this
8-
* Application.cfc must mimic the real one in your root, including ORM settings if needed.
9-
*
10-
* The 'execute()' method is used to execute a ColdBox event, with the following arguments
11-
* * event : the name of the event
12-
* * private : if the event is private or not
13-
* * prePostExempt : if the event needs to be exempt of pre post interceptors
14-
* * eventArguments : The struct of args to pass to the event
15-
* * renderResults : Render back the results of the event
16-
*******************************************************************************/
17-
component
1+
component
182
extends="tests.resources.BaseIntegrationTest"
193
{
204

tests/specs/integration/ModuleTests.cfc

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*******************************************************************************
2-
* Integration Test as BDD
3-
*
4-
* Extends the integration class: coldbox.system.testing.BaseTestCase
5-
*
6-
* so you can test your ColdBox application headlessly. The 'appMapping' points by default to
7-
* the '/root' mapping created in the test folder Application.cfc. Please note that this
8-
* Application.cfc must mimic the real one in your root, including ORM settings if needed.
9-
*
10-
* The 'execute()' method is used to execute a ColdBox event, with the following arguments
11-
* * event : the name of the event
12-
* * private : if the event is private or not
13-
* * prePostExempt : if the event needs to be exempt of pre post interceptors
14-
* * eventArguments : The struct of args to pass to the event
15-
* * renderResults : Render back the results of the event
16-
*******************************************************************************/
171
component extends="tests.resources.BaseIntegrationTest" {
182

193
/*********************************** LIFE CYCLE Methods ***********************************/

0 commit comments

Comments
 (0)