Created
October 19, 2011 13:42
-
-
Save bittersweetryan/1298314 to your computer and use it in GitHub Desktop.
Run test suite in order
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
testSuite = new mxunit.framework.TestSuite(); | |
//i'd like to run the tests in this order | |
testSuite.addAll("Koans.AboutAsserts"); | |
testSuite.addAll("Koans.AboutVariables"); | |
testSuite.addAll("Koans.AboutArrays"); | |
testSuite.addAll("Koans.AboutStructs"); | |
testSuite.addAll("Koans.AboutFunctions"); | |
testSuite.addAll("Koans.AboutComponents"); | |
testSuite.addAll("Koans.AboutComponentTags"); | |
results = testSuite.run(); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment