TestBox v1.0.0

testbox.system.testing.runners
Interface IRunner

WEB-INF.cftags.interface
        extended by testbox.system.testing.runners.IRunner
All Known Implementing Classes:
BDDRunner , UnitRunner

public interface IRunner
extends WEB-INF.cftags.interface

******************************************************************************* Copyright 2005-2009 ColdBox Framework by Luis Majano and Ortus Solutions, Corp www.coldbox.org | www.luismajano.com | www.ortussolutions.com ******************************************************************************* This TestBox runner is used to run and report on xUnit style test suites.

Constructor Summary
init(struct options)
          Constructor
 
Method Summary
 any run(any target, TestResult testResults)
          Execute a test run on a target bundle CFC
 
Methods inherited from class WEB-INF.cftags.interface
None
 

Constructor Detail

init

public init(struct options)
Constructor

Parameters:
options - The options for a runner
Method Detail

run

public any run(any target, TestResult testResults)
Execute a test run on a target bundle CFC

Parameters:
target - The target bundle CFC to test
testResults - The test results object to keep track of results for this test case

TestBox v1.0.0