Array |
1 | Struct | codePrintHTML | string | 278: for( local.x=1; local.x lte listLen( arguments.implements ); local.x++ ){<br>
279: // generate interface methods<br>
<b>280: generateMethodsFromMD( udfOut, getComponentMetadata( listGetAt( arguments.implements, x) ) );</b><br>
281: }<br>
282: <br>
|
| codePrintPlain | string | 278: for( local.x=1; local.x lte listLen( arguments.implements ); local.x++ ){
279: // generate interface methods
280: generateMethodsFromMD( udfOut, getComponentMetadata( listGetAt( arguments.implements, x) ) );
281: }
282:
|
| column | | id | | line | | Raw_Trace | string | testbox.system.mockutils.mockgenerator_cfc$cf.udfCall(/testbox/system/mockutils/MockGenerator.cfc:280) |
| template | string | C:\inetpub\wwwroot\testbox\system\mockutils\MockGenerator.cfc |
| type | |
|
2 | Struct | codePrintHTML | string | 133: }<br>
134: // Generate the CFC + Create it + Remove it<br>
<b>135: return prepareMock( instance.mockGenerator.generateCFC(argumentCollection=arguments) );</b><br>
136: </cfscript><br>
137: </cffunction><br>
|
| codePrintPlain | string | 133: }
134: // Generate the CFC + Create it + Remove it
135: return prepareMock( instance.mockGenerator.generateCFC(argumentCollection=arguments) );
136: </cfscript>
137: </cffunction>
|
| column | | id | | line | | Raw_Trace | string | testbox.system.mockbox_cfc$cf.udfCall1(/testbox/system/MockBox.cfc:135) |
| template | string | C:\inetpub\wwwroot\testbox\system\MockBox.cfc |
| type | |
|
3 | Struct | codePrintHTML | string | 9: function testStubInheritedInterfaces(){<br>
10: // If this can be created, then our test has passed.<br>
<b>11: var canBeMockedOne = getMockBox().createStub( implements = "tests.resources.NestedInterface" );</b><br>
12: }<br>
13: <br>
|
| codePrintPlain | string | 9: function testStubInheritedInterfaces(){
10: // If this can be created, then our test has passed.
11: var canBeMockedOne = getMockBox().createStub( implements = "tests.resources.NestedInterface" );
12: }
13:
|
| column | | id | | line | | Raw_Trace | string | testbox.tests.specs.mockbox.mockboxtest_cfc$cf.udfCall1(/testbox/tests/specs/mockbox/MockBoxTest.cfc:11) |
| template | string | C:\inetpub\wwwroot\testbox\tests\specs\mockbox\MockBoxTest.cfc |
| type | |
|
4 | Struct | codePrintHTML | string | 1177: // Execute Spec<br>
1178: try {<br>
<b>1179: invoke( this, arguments.spec.name );</b><br>
1180: <br>
1181: // Where we expecting an exception and it did not throw?<br>
|
| codePrintPlain | string | 1177: // Execute Spec
1178: try {
1179: invoke( this, arguments.spec.name );
1180:
1181: // Where we expecting an exception and it did not throw?
|
| column | | id | | line | | Raw_Trace | string | testbox.system.basespec_cfc$cf.udfCall6(/testbox/system/BaseSpec.cfc:1179) |
| template | string | C:\inetpub\wwwroot\testbox\system\BaseSpec.cfc |
| type | |
|
5 | Struct | codePrintHTML | string | 206: suiteStats=thread.suiteStats,<br>
207: runner=this<br>
<b>208: );</b><br>
209: <br>
210: // verify call backs<br>
|
| codePrintPlain | string | 206: suiteStats=thread.suiteStats,
207: runner=this
208: );
209:
210: // verify call backs
|
| column | | id | | line | | Raw_Trace | string | testbox.system.runners.unitrunner_cfc$cf.udfCall(/testbox/system/runners/UnitRunner.cfc:208) |
| template | string | C:\inetpub\wwwroot\testbox\system\runners\UnitRunner.cfc |
| type | |
|
6 | Struct | codePrintHTML | string | 79: testResults=arguments.testResults,<br>
80: bundleStats=bundleStats,<br>
<b>81: callbacks=arguments.callbacks</b><br>
82: );<br>
83: <br>
|
| codePrintPlain | string | 79: testResults=arguments.testResults,
80: bundleStats=bundleStats,
81: callbacks=arguments.callbacks
82: );
83:
|
| column | | id | | line | | Raw_Trace | string | testbox.system.runners.unitrunner_cfc$cf.udfCall(/testbox/system/runners/UnitRunner.cfc:81) |
| template | string | C:\inetpub\wwwroot\testbox\system\runners\UnitRunner.cfc |
| type | |
|
7 | Struct | codePrintHTML | string | 477: // Run via xUnit Style<br>
478: new testbox.system.runners.UnitRunner( options=variables.options,testbox=this )<br>
<b>479: .run( target, arguments.testResults, arguments.callbacks );</b><br>
480: }<br>
481: } catch( Any e ){<br>
|
| codePrintPlain | string | 477: // Run via xUnit Style
478: new testbox.system.runners.UnitRunner( options=variables.options,testbox=this )
479: .run( target, arguments.testResults, arguments.callbacks );
480: }
481: } catch( Any e ){
|
| column | | id | | line | | Raw_Trace | string | testbox.system.testbox_cfc$cf.udfCall2(/testbox/system/TestBox.cfc:479) |
| template | string | C:\inetpub\wwwroot\testbox\system\TestBox.cfc |
| type | |
|
8 | Struct | codePrintHTML | string | 250: bundlePath = thisBundlePath,<br>
251: testResults = results,<br>
<b>252: callbacks = arguments.callbacks</b><br>
253: );<br>
254: <br>
|
| codePrintPlain | string | 250: bundlePath = thisBundlePath,
251: testResults = results,
252: callbacks = arguments.callbacks
253: );
254:
|
| column | | id | | line | | Raw_Trace | string | testbox.system.testbox_cfc$cf.udfCall1(/testbox/system/TestBox.cfc:252) |
| template | string | C:\inetpub\wwwroot\testbox\system\TestBox.cfc |
| type | |
|
9 | Struct | codePrintHTML | string | 159: if( !isNull( arguments.reporter ) ){ variables.reporter = arguments.reporter; }<br>
160: // run it and get results<br>
<b>161: var results = runRaw( argumentCollection=arguments );</b><br>
162: // store latest results<br>
163: variables.result = results;<br>
|
| codePrintPlain | string | 159: if( !isNull( arguments.reporter ) ){ variables.reporter = arguments.reporter; }
160: // run it and get results
161: var results = runRaw( argumentCollection=arguments );
162: // store latest results
163: variables.result = results;
|
| column | | id | | line | | Raw_Trace | string | testbox.system.testbox_cfc$cf.udfCall1(/testbox/system/TestBox.cfc:161) |
| template | string | C:\inetpub\wwwroot\testbox\system\TestBox.cfc |
| type | |
|
10 | Struct | codePrintHTML | string | 24: <cfif structKeyExists( url, "action")><br>
25: <cfif directoryExists( expandPath( rootMapping & url.path ) )><br>
<b>26: <cfoutput>#testbox.init( directory=rootMapping & url.path ).run()#</cfoutput></b><br>
27: <cfelse><br>
28: <cfoutput><h2>Invalid incoming directory: #rootMapping & url.path#</h2></cfoutput><br>
|
| codePrintPlain | string | 24: <cfif structKeyExists( url, "action")>
25: <cfif directoryExists( expandPath( rootMapping & url.path ) )>
26: <cfoutput>#testbox.init( directory=rootMapping & url.path ).run()#</cfoutput>
27: <cfelse>
28: <cfoutput><h2>Invalid incoming directory: #rootMapping & url.path#</h2></cfoutput>
|
| column | | id | | line | | Raw_Trace | string | tests.index_cfm$cf.call(/tests/index.cfm:26) |
| template | string | C:\inetpub\wwwroot\tests\index.cfm |
| type | |
|