├── mxunit
├── framework
│ ├── .gitignore
│ ├── mightymock
│ │ ├── AbstractMock.cfc
│ │ ├── MockLogger.cfc
│ │ ├── MockFactory.cfc
│ │ ├── MightyMockFactory.cfc
│ │ ├── todo
│ │ └── MockDebug.cfc
│ ├── lib
│ │ ├── xom-1.2.6.jar
│ │ └── tagsoup-1.2.jar
│ ├── javaloader
│ │ ├── lib
│ │ │ └── classloader-20100119110136.jar
│ │ ├── support
│ │ │ ├── spring
│ │ │ │ └── lib
│ │ │ │ │ ├── spring-coldfusion.jar
│ │ │ │ │ └── spring-coldfusion-src.zip
│ │ │ └── cfcdynamicproxy
│ │ │ │ └── lib
│ │ │ │ ├── cfcdynamicproxy.jar
│ │ │ │ └── cfcdynamicproxy-src.zip
│ │ ├── readme.txt
│ │ └── tags
│ │ │ └── directory.cfm
│ ├── decorators
│ │ ├── AlphabeticallyOrderedTestsDecorator.cfc
│ │ ├── TransactionRollbackDecorator.cfc
│ │ ├── OrderedTestDecorator.cfc
│ │ └── MinimumVersionDecorator.cfc
│ ├── Test.cfc
│ ├── adapters
│ │ └── cf9
│ │ │ └── PublicProxyMaker.cfc
│ ├── VersionReader.cfc
│ ├── QueryTestResult.cfc
│ └── HamcrestAssert.cfc
├── buildprops
│ ├── .gitignore
│ ├── antrunner_sample.properties
│ ├── unames_example.properties
│ ├── version.properties
│ ├── nightlyversion.properties
│ ├── testresultsmail.html
│ └── scripts
│ │ └── http_doc_gen.js
├── ftp.listing
├── tests
│ ├── framework
│ │ ├── fixture
│ │ │ ├── interfaces
│ │ │ │ ├── OtherInterface.cfc
│ │ │ │ ├── AnInterface.cfc
│ │ │ │ ├── SubInterface.cfc
│ │ │ │ └── AComponent.cfc
│ │ │ ├── xpath
│ │ │ │ └── nodes.html
│ │ │ ├── dataproviders
│ │ │ │ ├── CSVWithoutHeaders.csv
│ │ │ │ ├── SimpleCSV.csv
│ │ │ │ ├── SimpleExcel.xls
│ │ │ │ └── ExcelWithoutHeaders.xls
│ │ │ ├── fixturetests
│ │ │ │ ├── SubClassWithNoMethodsTest.cfc
│ │ │ │ ├── SuperClassWithPrivateMethodsTest.cfc
│ │ │ │ ├── SomeRandomTest.cfc
│ │ │ │ ├── AnotherRandomTests.cfc
│ │ │ │ └── AnotherRandomTest.cfc
│ │ │ ├── ATestSuite.cfc
│ │ │ ├── MockFactory.cfc
│ │ │ ├── ComparatorTestData.cfc
│ │ │ ├── ParentWithPrivateMethods.cfc
│ │ │ ├── DataProviderFixture.cfc
│ │ │ ├── Mocking.cfc
│ │ │ ├── MyCFC.cfc
│ │ │ ├── TestAssertComponent.cfc
│ │ │ ├── decorators
│ │ │ │ ├── StoreTestNameDecorator.cfc
│ │ │ │ └── IgnoreFunnyFunctionsDecorator.cfc
│ │ │ ├── TestWithExpectedExceptionAttributes.cfc
│ │ │ ├── mxunit-TestCase-Template.cfc
│ │ │ ├── NewCFComponent.cfc
│ │ │ └── MyCFCTest.cfc
│ │ ├── DynamicTestCaseGenerationTest.cfc
│ │ ├── adapters
│ │ │ └── cf9
│ │ │ │ └── PublicProxyMakerTest.cfc
│ │ ├── AssertionChainingTest.cfc
│ │ ├── VersionReaderTest.cfc
│ │ ├── HamcrestMatcherTest.cfc
│ │ ├── TestDecoratorTest.cfc
│ │ ├── TestTest.cfc
│ │ ├── QueryTestResultTest.cfc
│ │ ├── HtmlTestResultTest.cfc
│ │ ├── CSVUtilityTest.cfc
│ │ └── TestCaseExtendsTest.cfc
│ ├── install
│ │ └── fixture
│ │ │ ├── test.cfm
│ │ │ └── index.cfm
│ ├── mightymock
│ │ ├── fixture
│ │ │ ├── Mockery.cfc
│ │ │ ├── Helper.cfc
│ │ │ ├── AcceptStrictType.cfc
│ │ │ ├── Dummy.cfc
│ │ │ ├── Mockify.cfc
│ │ │ ├── ParentSpyObject.cfc
│ │ │ ├── FileDeleter.cfc
│ │ │ ├── MySpyObject.cfc
│ │ │ └── MyComponent.cfc
│ │ ├── MockLoggerTest.cfc
│ │ ├── AbstractMockTest.cfc
│ │ ├── CaseSensitivtyTest.cfc
│ │ ├── MockDebugTest.cfc
│ │ ├── StateTransitionTest.cfc
│ │ ├── PatternInvocationTest.cfc
│ │ ├── FileDeleterTest.cfc
│ │ ├── BasicMXUnitIntegrationTest.cfc
│ │ ├── MockifyTest.cfc
│ │ ├── TypeParserTest.cfc
│ │ ├── BaseTest.cfc
│ │ ├── WilcardPatternTest.cfc
│ │ └── MockPlayTest.cfc
│ ├── bugs
│ │ ├── fixture
│ │ │ ├── 122
│ │ │ │ ├── GoodTest.cfc
│ │ │ │ └── ParseErrorTest.cfc
│ │ │ ├── 93sample.cfc
│ │ │ ├── test-with_hyphen.cfc
│ │ │ └── test_with_underscore.cfc
│ │ ├── 90.cfc
│ │ ├── 105ExtendedTest.cfc
│ │ ├── 105.cfc
│ │ ├── 93.cfc
│ │ ├── 149Test.cfc
│ │ ├── run-me
│ │ │ ├── test-with_hyphen.cfc
│ │ │ └── test_with_underscore.cfc
│ │ ├── Bug115.cfc
│ │ ├── bug126.cfc
│ │ └── ExpectedExceptionBug147Test.cfc
│ ├── build.properties
│ ├── compatability
│ │ └── DoesNotHaveTestAtEndOrBegining.cfc
│ ├── samples
│ │ ├── MyComponent.cfc
│ │ ├── MyComponentTest.cfc
│ │ └── MyOtherComponentTest.cfc
│ ├── ant
│ │ ├── commitSvnTest.xml
│ │ ├── build.xml
│ │ └── svnUpdateTest.xml
│ ├── runner
│ │ └── HTMLRunnerTest.cfc
│ ├── run.cfm
│ └── utils
│ │ └── TestBubbleSort.cfc
├── lib
│ ├── mail.jar
│ ├── activation.jar
│ ├── varscoper.jar
│ ├── ant-googlecode.jar
│ ├── ant-contrib-1.0b3.jar
│ ├── commons-net-1.4.1.jar
│ └── jakarta-oro-2.0.8.jar
├── samples
│ ├── HttpAntRunner.cfc
│ ├── TestCaseSkeleton.cfc
│ ├── MyComponent.cfc
│ ├── tests
│ │ ├── myTestSuite.cfm
│ │ ├── MyComponentTest.cfc
│ │ └── TestCaseSkeletonTest.cfc
│ ├── mocking
│ │ ├── TheComponent.cfc
│ │ ├── TheCollaborator.cfc
│ │ ├── TheStubTest.cfc
│ │ └── TheMockTest.cfc
│ ├── SimpleRunSkeleton.cfm
│ ├── MyTestSuite.cfm
│ ├── DirectoryTestSuiteSample.cfm
│ ├── ScheduledRun.cfm
│ ├── MyComponentTest.cfc
│ ├── PluginSimulator.cfm
│ └── MyOtherComponentTest.cfc
├── generator
│ ├── no-bugs.gif
│ ├── MXUnit_Parameter_Types_for_Automatic_Test_Generation.doc
│ ├── generator.js
│ ├── main.css
│ └── templates
│ │ ├── FailNewTagStyle.xslt
│ │ ├── FailNew.xslt
│ │ └── SucceedNew.xslt
├── images
│ ├── bug_green.gif
│ └── MXUnit-Small.png
├── ant
│ ├── lib
│ │ └── mxunit-ant.jar
│ ├── stylesheets
│ │ ├── antmanual.css
│ │ └── style.css
│ └── README.txt
├── resources
│ ├── jquery
│ │ ├── tablesorter
│ │ │ ├── blue
│ │ │ │ ├── asc.gif
│ │ │ │ ├── bg.gif
│ │ │ │ ├── blue.zip
│ │ │ │ ├── desc.gif
│ │ │ │ └── style.css
│ │ │ └── green
│ │ │ │ ├── up.png
│ │ │ │ ├── down.png
│ │ │ │ ├── default.png
│ │ │ │ └── style.css
│ │ ├── tipsy
│ │ │ ├── images
│ │ │ │ └── tipsy.gif
│ │ │ └── stylesheets
│ │ │ │ └── tipsy.css
│ │ └── spark.cfm
│ └── theme
│ │ ├── footer.cfm
│ │ └── styles.css
├── experimental_ant
│ └── copydictionary.properties
├── .gitignore
├── PluginDemoTests
│ ├── inheritance
│ │ ├── SomeExtendingTest.cfc
│ │ ├── BaseTest.cfc
│ │ └── SomeDoublyExtendingTest.cfc
│ ├── FiveSecondTest.cfc
│ ├── TestOrdering
│ │ ├── AlphabeticallyOrderedTest.cfc
│ │ └── DefaultOrderedTest.cfc
│ ├── weirderrordemos
│ │ ├── extends
│ │ │ ├── SomeTest.cfc
│ │ │ └── Extends.cfc
│ │ ├── BustedSetupTest.cfc
│ │ ├── BustedTearDownTest.cfc
│ │ └── BustedConstructorTest.cfc
│ ├── SubDir
│ │ ├── AnotherSubDir
│ │ │ ├── TestSomething.cfc
│ │ │ ├── SomeComponentWithStuff.cfc
│ │ │ ├── AnotherTest.cfc
│ │ │ └── SomeOtherTest.cfc
│ │ └── CFUnitStyleTest.cfc
│ ├── SingleFailureTest.cfc
│ ├── EmptyTest.cfc
│ ├── ExpectedExceptionTest.cfc
│ ├── InvalidMarkupTest.cfc
│ ├── ThrowsAnErrorTest.cfc
│ ├── SomeObject.cfc
│ ├── ComplexExceptionTypeErrorTest.cfc
│ ├── CFScriptExpectedExceptionTest.cfc
│ ├── SingleMethodTest.cfc
│ ├── run.cfm
│ ├── DoubleMethodTest.cfc
│ ├── PrivateMethodTest.cfc
│ └── build.xml
├── eclipse
│ ├── snippets
│ │ ├── mxunit
│ │ │ ├── assert
│ │ │ │ ├── fail.xml
│ │ │ │ ├── assertIsArray.xml
│ │ │ │ ├── assertIsEmpty.xml
│ │ │ │ ├── assertIsQuery.xml
│ │ │ │ ├── assertIsStruct.xml
│ │ │ │ ├── assertIsDefined.xml
│ │ │ │ ├── assertSame.xml
│ │ │ │ ├── assertEquals.xml
│ │ │ │ ├── assertIsTypeOf.xml
│ │ │ │ ├── assertIsXMLDoc.xml
│ │ │ │ ├── assertNotSame.xml
│ │ │ │ ├── assertTrue.xml
│ │ │ │ ├── assertFalse.xml
│ │ │ │ ├── assertNotEquals.xml
│ │ │ │ ├── addAssertDecorator.xml
│ │ │ │ └── try catch error path.xml
│ │ │ ├── helpers
│ │ │ │ ├── debug.xml
│ │ │ │ ├── makepublic.xml
│ │ │ │ ├── injectMethod.xml
│ │ │ │ ├── cfquerysim.xml
│ │ │ │ ├── injectProperty.xml
│ │ │ │ ├── test-time override function.xml
│ │ │ │ └── querysim.xml
│ │ │ ├── setUp cfscript.xml
│ │ │ ├── setUp.xml
│ │ │ ├── tearDown cfscript.xml
│ │ │ ├── tearDown.xml
│ │ │ ├── new test function cfscript.xml
│ │ │ ├── new test function.xml
│ │ │ ├── new test error path function cfscript.xml
│ │ │ ├── new test error path function.xml
│ │ │ ├── new MXUnit TestCase cfscript.xml
│ │ │ ├── testrunner
│ │ │ │ ├── Directory Test Suite Skeleton.xml
│ │ │ │ └── Simple Scheduled Test Run Template.xml
│ │ │ └── new MXUnit TestCase.xml
│ │ ├── readme.txt
│ │ └── keyCombos.properties
│ └── dictionary
│ │ └── readme.txt
├── README-toc.xml
├── README.txt
├── mxunit-TestSuiteTemplate.cfm
├── README.textile
├── doc
│ └── colddoc
│ │ └── strategy
│ │ └── api
│ │ └── resources
│ │ └── templates
│ │ ├── allclasses-frame.html
│ │ ├── package-frame.html
│ │ ├── .tmp_package-frame.html.16014~
│ │ ├── overview-frame.html
│ │ ├── .tmp_overview-frame.html.21513~
│ │ ├── index.html
│ │ ├── .tmp_index.html.25338~
│ │ ├── overview-summary.html
│ │ └── .tmp_overview-summary.html.91099~
├── mxunit-TestCase-Template.cfc
├── runner
│ ├── runner.js
│ ├── HtmlRunner.cfc
│ └── index.cfm
├── MIT-License.txt
├── README.html
└── utils
│ └── BubbleSort.cfc
├── cfkoanslogo.png
├── .gitignore
├── Koans
├── BaseKoan.cfc
├── AboutComponents.cfc
├── AboutClosures.cfc
├── AboutComponentTags.cfc
├── AboutBooleans.cfc
└── AboutExceptions.cfc
├── Components
└── TestComponent.cfc
└── Application.cfc
/mxunit/framework/.gitignore:
--------------------------------------------------------------------------------
1 | /generated
2 |
--------------------------------------------------------------------------------
/mxunit/buildprops/.gitignore:
--------------------------------------------------------------------------------
1 | /unames.properties
2 |
--------------------------------------------------------------------------------
/mxunit/ftp.listing:
--------------------------------------------------------------------------------
1 | 02-04-08 08:47AM 91 index.html
2 |
--------------------------------------------------------------------------------
/cfkoanslogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/cfkoanslogo.png
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/interfaces/OtherInterface.cfc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/xpath/nodes.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mxunit/lib/mail.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/mail.jar
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/interfaces/AnInterface.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mxunit/framework/mightymock/AbstractMock.cfc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mxunit/lib/activation.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/activation.jar
--------------------------------------------------------------------------------
/mxunit/lib/varscoper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/varscoper.jar
--------------------------------------------------------------------------------
/mxunit/samples/HttpAntRunner.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/interfaces/SubInterface.cfc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/mxunit/generator/no-bugs.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/generator/no-bugs.gif
--------------------------------------------------------------------------------
/mxunit/images/bug_green.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/images/bug_green.gif
--------------------------------------------------------------------------------
/mxunit/tests/install/fixture/test.cfm:
--------------------------------------------------------------------------------
1 | test.cfm
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | /settings.xml
3 | /.project
4 | /.settings/org.eclipse.core.resources.prefs
5 | /.DS_Store
6 | /WEB-INF
7 |
--------------------------------------------------------------------------------
/Koans/BaseKoan.cfc:
--------------------------------------------------------------------------------
1 | component extends="mxunit.framework.TestCase" hint="Base class for Koans"{
2 | variables.__ = "";
3 | }
--------------------------------------------------------------------------------
/mxunit/ant/lib/mxunit-ant.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/ant/lib/mxunit-ant.jar
--------------------------------------------------------------------------------
/mxunit/images/MXUnit-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/images/MXUnit-Small.png
--------------------------------------------------------------------------------
/mxunit/lib/ant-googlecode.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/ant-googlecode.jar
--------------------------------------------------------------------------------
/mxunit/lib/ant-contrib-1.0b3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/ant-contrib-1.0b3.jar
--------------------------------------------------------------------------------
/mxunit/lib/commons-net-1.4.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/commons-net-1.4.1.jar
--------------------------------------------------------------------------------
/mxunit/lib/jakarta-oro-2.0.8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/lib/jakarta-oro-2.0.8.jar
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/dataproviders/CSVWithoutHeaders.csv:
--------------------------------------------------------------------------------
1 | 0,1,1
2 | 1,5000,5050
3 | 2,5000,5100
4 | 3,5000,5150
5 |
--------------------------------------------------------------------------------
/mxunit/framework/lib/xom-1.2.6.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/lib/xom-1.2.6.jar
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/interfaces/AComponent.cfc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/fixture/Mockery.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/mxunit/framework/lib/tagsoup-1.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/lib/tagsoup-1.2.jar
--------------------------------------------------------------------------------
/mxunit/buildprops/antrunner_sample.properties:
--------------------------------------------------------------------------------
1 | server=localhost
2 | port=80
3 | context=
4 | webroot=c:/inetpub/wwwroot/
5 | classpath.excludes=
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/fixturetests/SubClassWithNoMethodsTest.cfc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/blue/asc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/blue/asc.gif
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/blue/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/blue/bg.gif
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/green/up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/green/up.png
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tipsy/images/tipsy.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tipsy/images/tipsy.gif
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/dataproviders/SimpleCSV.csv:
--------------------------------------------------------------------------------
1 | TaxRate,ItemCost,ExpectedResult
2 | 0,1,1
3 | 1,5000,5050
4 | 2,5000,5100
5 | 3,5000,5150
6 |
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/blue/blue.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/blue/blue.zip
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/blue/desc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/blue/desc.gif
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/green/down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/green/down.png
--------------------------------------------------------------------------------
/mxunit/resources/jquery/tablesorter/green/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/resources/jquery/tablesorter/green/default.png
--------------------------------------------------------------------------------
/mxunit/experimental_ant/copydictionary.properties:
--------------------------------------------------------------------------------
1 | dictionary.destinationDir=C:/Program Files (x86)/eclipse_33_rcp/plugins/org.cfeclipse.cfml_1.3.1.6/dictionary
2 |
3 |
--------------------------------------------------------------------------------
/mxunit/buildprops/unames_example.properties:
--------------------------------------------------------------------------------
1 | gc.username=
2 | gc.password=
3 | mail.from=
4 | mail.to=
5 | mail.host=
6 | ftp.site=ftp.mxunit.org
7 | ftp.username=
8 | ftp.password=
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/dataproviders/SimpleExcel.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/tests/framework/fixture/dataproviders/SimpleExcel.xls
--------------------------------------------------------------------------------
/mxunit/framework/javaloader/lib/classloader-20100119110136.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/javaloader/lib/classloader-20100119110136.jar
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/fixture/Helper.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 | function helpMe(){
4 | return 'called helper successfully';
5 | }
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/.gitignore:
--------------------------------------------------------------------------------
1 | settings.xml
2 | .settings/
3 | .project
4 | MXUnitInstallTest.cfc
5 | buildprops/antrunner.properties
6 | tests/testresults/
7 |
8 | /WEB-INF
9 | /doc
10 | /dist
11 |
--------------------------------------------------------------------------------
/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion.jar
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/dataproviders/ExcelWithoutHeaders.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/tests/framework/fixture/dataproviders/ExcelWithoutHeaders.xls
--------------------------------------------------------------------------------
/mxunit/framework/javaloader/readme.txt:
--------------------------------------------------------------------------------
1 | JavaLoader v1.0
2 | Author: Mark Mandel
3 | Date: 10 September 2010
4 |
5 | Documentation can now be found at:
6 | http://www.compoundtheory.com/javaloader/docs/
--------------------------------------------------------------------------------
/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion-src.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion-src.zip
--------------------------------------------------------------------------------
/mxunit/generator/MXUnit_Parameter_Types_for_Automatic_Test_Generation.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/generator/MXUnit_Parameter_Types_for_Automatic_Test_Generation.doc
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/inheritance/SomeExtendingTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy.jar
--------------------------------------------------------------------------------
/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy-src.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nodoherty/ColdFusion-Koans/HEAD/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy-src.zip
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/fixturetests/SuperClassWithPrivateMethodsTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/buildprops/version.properties:
--------------------------------------------------------------------------------
1 | #Build version info
2 | #Sat Nov 12 09:19:51 EST 2011
3 | build.buildnum=0
4 | build.minor=1
5 | build.versiondescription=Release
6 | build.notation=
7 | build.date=11/12/2011
8 | build.major=2
9 |
--------------------------------------------------------------------------------
/mxunit/framework/mightymock/MockLogger.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 | /*
4 | Write invocation records to log
5 | */
6 | function init(){
7 | return this;
8 | }
9 |
10 |
11 |
--------------------------------------------------------------------------------
/mxunit/tests/install/fixture/index.cfm:
--------------------------------------------------------------------------------
1 | hell from fixture
2 |
3 |
4 | getPageContext().include("test.cfm");
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/mxunit/buildprops/nightlyversion.properties:
--------------------------------------------------------------------------------
1 | #Build version info
2 | #Thu Sep 08 22:01:11 EDT 2011
3 | build.buildnum=4
4 | build.minor=0
5 | build.versiondescription=Nightly Build
6 | build.notation=
7 | build.date=09/08/2011
8 | build.major=2
9 |
--------------------------------------------------------------------------------
/mxunit/tests/bugs/fixture/93sample.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/tests/build.properties:
--------------------------------------------------------------------------------
1 | #build properties for the Ant builds build.xml and fast-build.xml
2 | server.name=localhost
3 | server.port=8301
4 | component.path=/home/billy/software/jrun4/servers/dev/cfusion.ear/cfusion.war
5 | mxunit.jar=../ant/lib/mxunit-ant.jar
--------------------------------------------------------------------------------
/mxunit/buildprops/testresultsmail.html:
--------------------------------------------------------------------------------
1 |
2 | LATEST Test Results
3 |
4 |
5 |
6 | ${resultshtml}
7 |
8 |
9 |
10 | PREVIOUS Test Results
11 | ${currentresultshtml}
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/fixture/AcceptStrictType.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/FiveSecondTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/TestOrdering/AlphabeticallyOrderedTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/weirderrordemos/extends/SomeTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/SubDir/AnotherSubDir/TestSomething.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/fail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | fail
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/ATestSuite.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 | addAll("mxunit.tests.framework.AssertDecoratorTest");
4 | addAll("mxunit.tests.bugs.fixture.test_with_underscore");
5 |
6 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/SubDir/AnotherSubDir/SomeComponentWithStuff.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/MockFactory.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | return this;
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/debug.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | debug
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/fixture/Dummy.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 | this.bah = 'this.bah';
4 | foo = 'bar';
5 | variables.instance.bah = 'barbar';
6 |
7 | function bar(){
8 | return foo;
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/setUp cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | setUp cfscript
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/fixture/Mockify.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/setUp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | setUp
4 |
5 |
6 | ]]>
7 | ]]>
9 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/SingleFailureTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | wooopity doo!
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/tearDown cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | tearDown cfscript
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/weirderrordemos/extends/Extends.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsArray.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsArray
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsEmpty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsEmpty
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsQuery.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsQuery
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/tearDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | tearDown
4 |
5 |
6 | ]]>
7 | ]]>
9 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsStruct.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsStruct
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsDefined.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsDefined
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertSame.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertSame
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/EmptyTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertEquals.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertEquals
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsTypeOf.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsTypeOf
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/makepublic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | makepublic
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/ExpectedExceptionTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertIsXMLDoc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsXMLDoc
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertNotSame.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertNotSame
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertTrue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertTrue
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/inheritance/BaseTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertFalse.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertFalse
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/assertNotEquals.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertNotEquals
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/inheritance/SomeDoublyExtendingTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/mxunit/samples/TestCaseSkeleton.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/mxunit/README-toc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/ComparatorTestData.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/addAssertDecorator.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | addAssertDecorator
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/ParentWithPrivateMethods.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/DynamicTestCaseGenerationTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 | component extends="mxunit.framework.TestCase" {
4 |
5 | a = [1,2,3,4];
6 |
7 |
8 |
9 | function setUp(){
10 |
11 | }
12 |
13 |
14 |
15 |
16 | /**
17 | * @dataprovider a
18 | */
19 | function testThis(a){
20 | debug(a);
21 | }
22 |
23 |
24 | }
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/MockLoggerTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | function testWriteLog() {
6 | //To Do: do logging
7 | debug('to do');
8 | }
9 |
10 |
11 |
12 | function setUp(){
13 |
14 | }
15 |
16 | function tearDown(){
17 |
18 | }
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/mxunit/tests/bugs/90.cfc:
--------------------------------------------------------------------------------
1 |
2 | Calls TestSuite.run() which invokes tearDown(). This is caught but not
3 | displayed in debug ..
4 |
5 |
6 | error
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/new test function cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test function cfscript
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/generator/generator.js:
--------------------------------------------------------------------------------
1 | function toggle(frm)
2 | {
3 | for ( ii=0 ; ii < frm.tableNameList.length ; ii++)
4 | {
5 | frm.tableNameList[ii].checked = frm.all.checked;
6 | }
7 | }
8 |
9 | function suggest(frm,target,delim)
10 | {
11 | if (delim == "file")
12 | {
13 | target.value = frm.value + "/tests";
14 | } else {
15 | target.value = frm.value + ".tests";
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/injectMethod.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | injectMethod
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/InvalidMarkupTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
13 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/adapters/cf9/PublicProxyMakerTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/TestOrdering/DefaultOrderedTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/cfquerysim.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | cfquerysim
4 |
5 |
6 |
7 |
8 | q
9 | ]]>
10 |
14 |
15 | ]]>
16 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/DataProviderFixture.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | function double(param1){
5 | return param1 * 2;
6 | }
7 |
8 | function queryEcho(q) {
9 | return q.recordCount;
10 | }
11 |
12 |
13 |
14 |
15 |
16 | q
17 | col1,col2,col3,col4
18 | 1|1.2|1.3|1.4
19 | 2|2.2|2.3|2.4
20 | 3|3.2|3.3|3.4
21 |
22 |
23 |
--------------------------------------------------------------------------------
/mxunit/README.txt:
--------------------------------------------------------------------------------
1 | MXUnit is a unit test framework for CFML.
2 |
3 | Main website: http://mxunit.org
4 |
5 | Docs, etc: http://wiki.mxunit.org
6 |
7 | Bugs and enhancements: http://jira.mxunit.org
8 |
9 | SVN: http://mxunit.googlecode.com/svn/mxunit/trunk
10 |
11 | MXUnit Google Group (to get help): http://groups.google.com/group/mxunit
12 |
13 | Version Info: This is a nightly build of the 2.0.3 stream, built on 09/09/2011
--------------------------------------------------------------------------------
/mxunit/tests/bugs/105ExtendedTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | should display two tests
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mxunit/tests/compatability/DoesNotHaveTestAtEndOrBegining.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | function testSomething(){
5 | fail("implement me ...");
6 | }
7 |
8 |
9 | /*
10 | @BeforeTest/@AfterTest
11 | */
12 |
13 | function setUp(){
14 |
15 | }
16 |
17 | function tearDown(){ }
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/AbstractMockTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | function testAbstractMockMetaData(){
5 | //debug( getMetaData(mock) );
6 | }
7 |
8 | function setUp(){
9 | mock = createObject('component' ,'mxunit.framework.mightymock.AbstractMock');
10 | }
11 |
12 |
13 | function tearDown(){
14 | }
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/injectProperty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | injectProperty
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/new test function.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test function
4 |
5 |
6 |
7 |
8 | ]]>
9 | ]]>
11 |
--------------------------------------------------------------------------------
/mxunit/framework/decorators/AlphabeticallyOrderedTestsDecorator.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/test-time override function.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | test-time override function
4 |
5 |
6 |
7 |
8 | ]]>
9 | ]]>
10 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/weirderrordemos/BustedSetupTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/mxunit/samples/MyComponent.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/mxunit/tests/framework/fixture/Mocking.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | mymock = mock("mxunit.framework.Assert");
6 | assertIsTypeOf(mymock,"mxunit.framework.Assert");
7 | mymock.mockMethod("getHashCode").returns("Hello!");
8 | assertEquals("Hello!",mymock.getHashCode(""));
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/mxunit/tests/samples/MyComponent.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/weirderrordemos/BustedTearDownTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/mxunit/tests/bugs/105.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | We just want this test to run and will extend if later
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/helpers/querysim.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | querysim
4 |
5 |
6 |
7 |
8 | q
9 | $${column names separated by commas}
10 | $${row of data separated by pipes}
11 |
12 | ]]>
13 |
15 |
16 | ]]>
17 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/new test error path function cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test error path function cfscript
4 |
5 |
10 |
11 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/weirderrordemos/BustedConstructorTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/mxunit/samples/tests/myTestSuite.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | DTS = createObject("component","mxunit.runner.DirectoryTestSuite");
5 | excludes = "";
6 | results = DTS.run(
7 | directory = "c:\inetpub\wwwroot\mxunit\samples\tests\",
8 | componentPath = "mxunit.samples.tests",
9 | recurse = "true",
10 | excludes = "#excludes#"
11 | );
12 |
13 |
14 | #results.getResultsOutput(URL.output)#
15 |
16 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/CaseSensitivtyTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | function mockShouldBeCaseInsensitive(){
5 | m = $('bar');
6 | m.foo('bar').returns(true);
7 |
8 | m.foo('bar');
9 | m.foo('Bar');
10 | m.fOo('BaR');
11 | m.fOO('bAr');
12 | m.verifyTimes(4).foo('bar');
13 | }
14 |
15 |
16 | function setUp(){
17 |
18 | }
19 |
20 | function tearDown(){
21 |
22 | }
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/mxunit/PluginDemoTests/ThrowsAnErrorTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/mxunit/tests/bugs/fixture/122/GoodTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/mxunit/tests/mightymock/fixture/ParentSpyObject.cfc:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/new test error path function.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test error path function
4 |
5 |
6 |
7 |
8 | ]]>
9 |
10 |
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/readme.txt:
--------------------------------------------------------------------------------
1 | -----------------------------------------------
2 | Instructions for installing the mxunit snippets
3 | -----------------------------------------------
4 |
5 |
6 | 1) in Eclipse: go to Window -- Preferences -- CFEclipse
7 | 2) copy the path to the snippets directory
8 | 3) open that path on your file system
9 | 4) copy the snippets/mxunit directory into the snippets directory that you just opened
10 | 5) optionally, copy the contents of snippets/mxunit/keyCombos.properties into your existing keyCombos.properties file
--------------------------------------------------------------------------------
/mxunit/tests/bugs/fixture/122/ParseErrorTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/mxunit/eclipse/dictionary/readme.txt:
--------------------------------------------------------------------------------
1 |
2 | 1) open /plugins/org.cfeclipse.cfml_/dictionary/
3 | 2) copy mxunit.xml into that directory
4 | 3) open dictionaryconfig.xml
5 | 4) underneath the "" lines, add:
6 |
7 |
8 |
9 | 5) restart eclipse
10 |
11 | Then, inside any test cases, typing the function names for public and package functions from TestCase and the Assert* cfcs will pop up function support. For example, type "assertEquals("
12 |
13 | and the argument popups will appear.
--------------------------------------------------------------------------------
/mxunit/eclipse/snippets/mxunit/assert/try catch error path.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | try catch error path
4 |
5 |
6 |
7 |
8 |
9 | ]]>
10 |
13 |
14 |
15 |
16 |
17 | ]]>
18 |
--------------------------------------------------------------------------------
/mxunit/resources/theme/footer.cfm:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |