Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created October 19, 2011 13:42
Show Gist options
  • Save bittersweetryan/1298314 to your computer and use it in GitHub Desktop.
Save bittersweetryan/1298314 to your computer and use it in GitHub Desktop.
Run test suite in order
<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