Skip to content

Commit

Permalink
renames test super functions
Browse files Browse the repository at this point in the history
  • Loading branch information
chapmandu committed Jul 28, 2016
1 parent b4b277e commit f1c4155
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions wheels/tests/Test.cfc
Expand Up @@ -8,23 +8,23 @@ component extends="wheels.Test" output=false {
}

/*
* Executes before every tests case if called from the package via super.superSetup()
* Executes before every tests case if called from the package via super.setup()
*/
function superSetup() {
loc = {};
function setup() {

}

/*
* Executes after every tests case if called from the package via super.superTeardown()
* Executes after every tests case if called from the package via super.teardown()
*/
function superTeardown() {
function teardown() {

}

/*
* Executes once after the test suite runs
*/
function afterAll() {

}
}

0 comments on commit f1c4155

Please sign in to comment.