├── .gitignore
├── wwwroot
├── tests
│ └── server
│ │ ├── mxunit
│ │ ├── 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
│ │ │ │ │ ├── MyCFCTest.cfc
│ │ │ │ │ └── NewCFComponent.cfc
│ │ │ │ ├── DynamicTestCaseGenerationTest.cfc
│ │ │ │ ├── adapters
│ │ │ │ │ └── cf9
│ │ │ │ │ │ └── PublicProxyMakerTest.cfc
│ │ │ │ ├── AssertionChainingTest.cfc
│ │ │ │ ├── VersionReaderTest.cfc
│ │ │ │ ├── TestDecoratorTest.cfc
│ │ │ │ ├── HamcrestMatcherTest.cfc
│ │ │ │ ├── TestTest.cfc
│ │ │ │ ├── QueryTestResultTest.cfc
│ │ │ │ └── HtmlTestResultTest.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
│ │ │ │ ├── MockifyTest.cfc
│ │ │ │ ├── BasicMXUnitIntegrationTest.cfc
│ │ │ │ ├── TypeParserTest.cfc
│ │ │ │ └── BaseTest.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
│ │ │ ├── build.properties
│ │ │ ├── compatability
│ │ │ │ └── DoesNotHaveTestAtEndOrBegining.cfc
│ │ │ ├── samples
│ │ │ │ ├── MyComponent.cfc
│ │ │ │ └── MyComponentTest.cfc
│ │ │ ├── ant
│ │ │ │ ├── commitSvnTest.xml
│ │ │ │ ├── build.xml
│ │ │ │ └── svnUpdateTest.xml
│ │ │ ├── runner
│ │ │ │ └── HTMLRunnerTest.cfc
│ │ │ └── run.cfm
│ │ ├── framework
│ │ │ ├── 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
│ │ │ │ ├── readme.txt
│ │ │ │ ├── support
│ │ │ │ │ ├── spring
│ │ │ │ │ │ └── lib
│ │ │ │ │ │ │ ├── spring-coldfusion.jar
│ │ │ │ │ │ │ └── spring-coldfusion-src.zip
│ │ │ │ │ └── cfcdynamicproxy
│ │ │ │ │ │ └── lib
│ │ │ │ │ │ ├── cfcdynamicproxy.jar
│ │ │ │ │ │ └── cfcdynamicproxy-src.zip
│ │ │ │ └── tags
│ │ │ │ │ └── directory.cfm
│ │ │ ├── decorators
│ │ │ │ ├── AlphabeticallyOrderedTestsDecorator.cfc
│ │ │ │ ├── TransactionRollbackDecorator.cfc
│ │ │ │ └── OrderedTestDecorator.cfc
│ │ │ ├── Test.cfc
│ │ │ ├── adapters
│ │ │ │ └── cf9
│ │ │ │ │ └── PublicProxyMaker.cfc
│ │ │ ├── VersionReader.cfc
│ │ │ ├── QueryTestResult.cfc
│ │ │ └── HamcrestAssert.cfc
│ │ ├── samples
│ │ │ ├── HttpAntRunner.cfc
│ │ │ ├── TestCaseSkeleton.cfc
│ │ │ ├── MyComponent.cfc
│ │ │ ├── tests
│ │ │ │ ├── myTestSuite.cfm
│ │ │ │ ├── MyComponentTest.cfc
│ │ │ │ └── TestCaseSkeletonTest.cfc
│ │ │ ├── mocking
│ │ │ │ ├── TheComponent.cfc
│ │ │ │ ├── TheCollaborator.cfc
│ │ │ │ └── TheStubTest.cfc
│ │ │ ├── SimpleRunSkeleton.cfm
│ │ │ ├── MyTestSuite.cfm
│ │ │ ├── DirectoryTestSuiteSample.cfm
│ │ │ ├── ScheduledRun.cfm
│ │ │ └── MyComponentTest.cfc
│ │ ├── images
│ │ │ ├── bug_green.gif
│ │ │ └── MXUnit-Small.png
│ │ ├── ant
│ │ │ ├── lib
│ │ │ │ └── mxunit-ant.jar
│ │ │ ├── stylesheets
│ │ │ │ ├── antmanual.css
│ │ │ │ └── style.css
│ │ │ └── README.txt
│ │ ├── generator
│ │ │ ├── no-bugs.gif
│ │ │ ├── MXUnit_Parameter_Types_for_Automatic_Test_Generation.doc
│ │ │ ├── generator.js
│ │ │ ├── main.css
│ │ │ └── templates
│ │ │ │ ├── FailNewTagStyle.xslt
│ │ │ │ ├── FailNew.xslt
│ │ │ │ └── SucceedNew.xslt
│ │ ├── lib
│ │ │ └── ant-contrib-1.0b3.jar
│ │ ├── buildprops
│ │ │ ├── antrunner_sample.properties
│ │ │ ├── antrunner.properties
│ │ │ ├── unames_example.properties
│ │ │ ├── version.properties
│ │ │ └── scripts
│ │ │ │ └── http_doc_gen.js
│ │ ├── resources
│ │ │ ├── jquery
│ │ │ │ ├── tablesorter
│ │ │ │ │ ├── blue
│ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ ├── asc.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
│ │ ├── PluginDemoTests
│ │ │ ├── inheritance
│ │ │ │ ├── SomeExtendingTest.cfc
│ │ │ │ ├── BaseTest.cfc
│ │ │ │ └── SomeDoublyExtendingTest.cfc
│ │ │ ├── FiveSecondTest.cfc
│ │ │ ├── SubDir
│ │ │ │ ├── AnotherSubDir
│ │ │ │ │ ├── TestSomething.cfc
│ │ │ │ │ ├── SomeComponentWithStuff.cfc
│ │ │ │ │ ├── AnotherTest.cfc
│ │ │ │ │ └── SomeOtherTest.cfc
│ │ │ │ └── CFUnitStyleTest.cfc
│ │ │ ├── TestOrdering
│ │ │ │ ├── AlphabeticallyOrderedTest.cfc
│ │ │ │ └── DefaultOrderedTest.cfc
│ │ │ ├── weirderrordemos
│ │ │ │ ├── extends
│ │ │ │ │ ├── SomeTest.cfc
│ │ │ │ │ └── Extends.cfc
│ │ │ │ ├── BustedSetupTest.cfc
│ │ │ │ ├── BustedTearDownTest.cfc
│ │ │ │ └── BustedConstructorTest.cfc
│ │ │ ├── SingleFailureTest.cfc
│ │ │ ├── EmptyTest.cfc
│ │ │ ├── ExpectedExceptionTest.cfc
│ │ │ ├── InvalidMarkupTest.cfc
│ │ │ ├── ThrowsAnErrorTest.cfc
│ │ │ ├── SomeObject.cfc
│ │ │ ├── CFScriptExpectedExceptionTest.cfc
│ │ │ ├── ComplexExceptionTypeErrorTest.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
│ │ │ │ │ │ ├── assertNotSame.xml
│ │ │ │ │ │ ├── assertFalse.xml
│ │ │ │ │ │ ├── assertIsXMLDoc.xml
│ │ │ │ │ │ ├── assertNotEquals.xml
│ │ │ │ │ │ ├── assertTrue.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
│ │ │ └── dictionary
│ │ │ │ └── readme.txt
│ │ ├── README.txt
│ │ ├── mxunit-TestSuiteTemplate.cfm
│ │ ├── doc
│ │ │ ├── colddoc
│ │ │ │ └── strategy
│ │ │ │ │ └── api
│ │ │ │ │ └── resources
│ │ │ │ │ └── templates
│ │ │ │ │ ├── allclasses-frame.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ └── overview-frame.html
│ │ │ └── api
│ │ │ │ ├── mxunit
│ │ │ │ ├── framework
│ │ │ │ │ ├── ext
│ │ │ │ │ │ └── package-frame.html
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ └── cf9
│ │ │ │ │ │ │ └── package-frame.html
│ │ │ │ │ ├── javaloader
│ │ │ │ │ │ └── package-frame.html
│ │ │ │ │ └── decorators
│ │ │ │ │ │ └── package-frame.html
│ │ │ │ └── runner
│ │ │ │ │ └── package-frame.html
│ │ │ │ └── index.html
│ │ ├── mxunit-TestCase-Template.cfc
│ │ ├── runner
│ │ │ ├── runner.js
│ │ │ ├── HtmlRunner.cfc
│ │ │ └── index.cfm
│ │ ├── MIT-License.txt
│ │ └── utils
│ │ │ └── BubbleSort.cfc
│ │ ├── runner.cfm
│ │ └── Application.cfc
├── css
│ ├── modules
│ │ ├── siteAlert.css
│ │ ├── siteExplanation.css
│ │ ├── siteTitle.css
│ │ ├── siteNavigation.css
│ │ └── taskList.css
│ ├── security.css
│ ├── reset.css
│ ├── standard.css
│ └── layouts
│ │ └── master.css
├── controllers
│ ├── tasks
│ │ ├── delete.cfm
│ │ ├── list.cfm
│ │ ├── edit.cfm
│ │ └── index.cfm
│ ├── security
│ │ ├── logout.cfm
│ │ ├── passwordResetSent.cfm
│ │ ├── login.cfm
│ │ ├── forgotPassword.cfm
│ │ ├── resetPassword.cfm
│ │ ├── createAccount.cfm
│ │ └── index.cfm
│ └── account
│ │ ├── index.cfm
│ │ ├── edit.cfm
│ │ └── changePassword.cfm
├── views
│ ├── security
│ │ ├── passwordResetSent.cfm
│ │ ├── resetPassword.cfm
│ │ ├── forgotPassword.cfm
│ │ ├── login.cfm
│ │ └── createAccount.cfm
│ └── account
│ │ ├── edit.cfm
│ │ └── changePassword.cfm
├── layouts
│ ├── security.cfm
│ └── standard.cfm
└── index.cfm
└── design
└── wireframe
├── login
└── login_v1.png
├── tasks
└── tasks_v1.png
└── profile
└── profile_v1.png
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | # Don't include the exported JPG files.
3 |
4 | design/wireframe/pngs
5 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/interfaces/OtherInterface.cfc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/xpath/nodes.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/design/wireframe/login/login_v1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/design/wireframe/login/login_v1.png
--------------------------------------------------------------------------------
/design/wireframe/tasks/tasks_v1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/design/wireframe/tasks/tasks_v1.png
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/mightymock/AbstractMock.cfc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/samples/HttpAntRunner.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/interfaces/AnInterface.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/design/wireframe/profile/profile_v1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/design/wireframe/profile/profile_v1.png
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/interfaces/SubInterface.cfc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/install/fixture/test.cfm:
--------------------------------------------------------------------------------
1 | test.cfm
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/images/bug_green.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/images/bug_green.gif
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/dataproviders/CSVWithoutHeaders.csv:
--------------------------------------------------------------------------------
1 | 0,1,1
2 | 1,5000,5050
3 | 2,5000,5100
4 | 3,5000,5150
5 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/interfaces/AComponent.cfc:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/mightymock/fixture/Mockery.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/ant/lib/mxunit-ant.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/ant/lib/mxunit-ant.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/generator/no-bugs.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/generator/no-bugs.gif
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/images/MXUnit-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/images/MXUnit-Small.png
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/lib/ant-contrib-1.0b3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/lib/ant-contrib-1.0b3.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/buildprops/antrunner_sample.properties:
--------------------------------------------------------------------------------
1 | server=localhost
2 | port=80
3 | context=
4 | webroot=c:/inetpub/wwwroot/
5 | classpath.excludes=
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/lib/xom-1.2.6.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/lib/xom-1.2.6.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/fixturetests/SubClassWithNoMethodsTest.cfc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/lib/tagsoup-1.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/lib/tagsoup-1.2.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/buildprops/antrunner.properties:
--------------------------------------------------------------------------------
1 | server=localhost
2 | port=80
3 | webroot=c:/dev/projects/wwwroot/
4 | classpath.excludes=svnjavahl.jar,svnClientAdapter.jar,svnant.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/bg.gif
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tipsy/images/tipsy.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tipsy/images/tipsy.gif
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/asc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/asc.gif
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/blue.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/blue.zip
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/desc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/blue/desc.gif
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/green/up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/green/up.png
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/green/down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/green/down.png
--------------------------------------------------------------------------------
/wwwroot/tests/server/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=
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/green/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/resources/jquery/tablesorter/green/default.png
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/mightymock/fixture/Helper.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 | function helpMe(){
4 | return 'called helper successfully';
5 | }
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/javaloader/lib/classloader-20100119110136.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/javaloader/lib/classloader-20100119110136.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/dataproviders/SimpleExcel.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/tests/framework/fixture/dataproviders/SimpleExcel.xls
--------------------------------------------------------------------------------
/wwwroot/tests/server/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/
--------------------------------------------------------------------------------
/wwwroot/css/modules/siteAlert.css:
--------------------------------------------------------------------------------
1 |
2 | div.m-siteAlert {
3 | background-color: #F0F0F0 ;
4 | font-size: 13px ;
5 | line-height: 18px ;
6 | margin-bottom: 30px ;
7 | padding: 12px 10px 12px 10px ;
8 | text-align: center ;
9 | }
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/inheritance/SomeExtendingTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/dataproviders/ExcelWithoutHeaders.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/tests/framework/fixture/dataproviders/ExcelWithoutHeaders.xls
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion-src.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/javaloader/support/spring/lib/spring-coldfusion-src.zip
--------------------------------------------------------------------------------
/wwwroot/controllers/tasks/delete.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | // Now that the user has deleted the task, redirect the user back to
5 | // the list of tasks.
6 | location( url="./index.cfm?event=tasks", addToken="false" );
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/generator/MXUnit_Parameter_Types_for_Automatic_Test_Generation.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/generator/MXUnit_Parameter_Types_for_Automatic_Test_Generation.doc
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/fixturetests/SuperClassWithPrivateMethodsTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy.jar
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy-src.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bennadel/MVC-Learning/HEAD/wwwroot/tests/server/mxunit/framework/javaloader/support/cfcdynamicproxy/lib/cfcdynamicproxy-src.zip
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/buildprops/version.properties:
--------------------------------------------------------------------------------
1 | #Build version info
2 | #Sun Jan 15 16:44:26 EST 2012
3 | build.buildnum=1
4 | build.minor=1
5 | build.versiondescription=Release
6 | build.notation=
7 | build.date=01/15/2012
8 | build.major=2
9 |
--------------------------------------------------------------------------------
/wwwroot/controllers/security/logout.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | // Because we don't have an active security system, explicitly
5 | // forward the user to the login form.
6 | location( url="./index.cfm?event=security.login", addToken="false" );
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/install/fixture/index.cfm:
--------------------------------------------------------------------------------
1 | hell from fixture
2 |
3 |
4 | getPageContext().include("test.cfm");
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/bugs/fixture/93sample.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/mightymock/fixture/AcceptStrictType.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/FiveSecondTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/SubDir/AnotherSubDir/TestSomething.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/TestOrdering/AlphabeticallyOrderedTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/weirderrordemos/extends/SomeTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/SubDir/AnotherSubDir/SomeComponentWithStuff.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/fail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | fail
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/helpers/debug.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | debug
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/setUp cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | setUp cfscript
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/MockFactory.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | return this;
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/setUp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | setUp
4 |
5 |
6 | ]]>
7 | ]]>
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/tearDown cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | tearDown cfscript
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/mightymock/fixture/Mockify.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/css/security.css:
--------------------------------------------------------------------------------
1 |
2 | @import url( "./reset.css" );
3 | @import url( "./layouts/master.css" );
4 | @import url( "./modules/siteAlert.css" );
5 | @import url( "./modules/siteTitle.css" );
6 | @import url( "./modules/siteNavigation.css" );
7 | @import url( "./modules/form.css" );
8 | @import url( "./modules/siteExplanation.css" );
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/SingleFailureTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | wooopity doo!
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/tearDown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | tearDown
4 |
5 |
6 | ]]>
7 | ]]>
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/weirderrordemos/extends/Extends.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsArray.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsArray
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsEmpty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsEmpty
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsQuery.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsQuery
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsStruct.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsStruct
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsDefined.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsDefined
4 |
5 | ]]>
6 |
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertSame.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertSame
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/controllers/security/passwordResetSent.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | // Populate the view data for rendering.
5 | request.viewData.title = "Your Password Reset Email Has Been Sent";
6 |
7 | // Populate the relevant views and layout.
8 | include "/views/security/passwordResetSent.cfm";
9 | include "/layouts/security.cfm";
10 |
11 |
--------------------------------------------------------------------------------
/wwwroot/css/reset.css:
--------------------------------------------------------------------------------
1 |
2 | body {
3 | background-color: #FFFFFF ;
4 | color: #333333 ;
5 | font-family: helvetica, arial, sans-serif ;
6 | font-size: 16px ;
7 | line-height: 21px ;
8 | margin: 0px 0px 0px 0px ;
9 | padding: 0px 0px 0px 0px ;
10 | }
11 |
12 | form {
13 | margin: 0px 0px 0px 0px ;
14 | }
15 |
16 | a {
17 | color: #333333 ;
18 | }
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertEquals.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertEquals
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsTypeOf.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsTypeOf
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/helpers/makepublic.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | makepublic
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/controllers/tasks/list.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | // Populate the view data for view rendering.
5 | include "/views/tasks/list.cfm";
6 |
7 | // Populate the view data for layout rendering.
8 | request.viewData.title = "Your Current Tasks";
9 | request.viewData.activeNavItem = "tasks";
10 | include "/layouts/standard.cfm";
11 |
12 |
--------------------------------------------------------------------------------
/wwwroot/css/modules/siteExplanation.css:
--------------------------------------------------------------------------------
1 |
2 | div.m-siteExplanation {
3 | color: #999999 ;
4 | font-size: 12px ;
5 | line-height: 17px ;
6 | }
7 |
8 | div.m-siteExplanation h4 {
9 | margin: 0px 0px 2px 0px ;
10 | }
11 |
12 | div.m-siteExplanation p {
13 | margin: 0px 0px 0px 0px ;
14 | }
15 |
16 | div.m-siteExplanation a {
17 | color: #999999 ;
18 | }
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/EmptyTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertNotSame.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertNotSame
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/ExpectedExceptionTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertFalse.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertFalse
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertIsXMLDoc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertIsXMLDoc
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertNotEquals.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertNotEquals
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/assertTrue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | assertTrue
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/css/standard.css:
--------------------------------------------------------------------------------
1 |
2 | @import url( "./reset.css" );
3 | @import url( "./layouts/master.css" );
4 | @import url( "./modules/siteAlert.css" );
5 | @import url( "./modules/siteTitle.css" );
6 | @import url( "./modules/siteNavigation.css" );
7 | @import url( "./modules/taskList.css" );
8 | @import url( "./modules/form.css" );
9 | @import url( "./modules/siteExplanation.css" );
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/inheritance/BaseTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/inheritance/SomeDoublyExtendingTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/TestOrdering/DefaultOrderedTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/samples/TestCaseSkeleton.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/assert/addAssertDecorator.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | addAssertDecorator
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/ComparatorTestData.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/fixture/ParentWithPrivateMethods.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/new test function cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test function cfscript
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/views/security/passwordResetSent.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | I a few moments, you should receive an email with a link
9 | to choose a new password.
10 |
11 |
12 |
13 | Back to login.
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/helpers/injectMethod.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | injectMethod
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/framework/adapters/cf9/PublicProxyMakerTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/InvalidMarkupTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
13 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/helpers/cfquerysim.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | cfquerysim
4 |
5 |
6 |
7 |
8 | q
9 | ]]>
10 |
14 |
15 | ]]>
16 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/helpers/injectProperty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | injectProperty
4 |
5 |
6 | ]]>
7 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/helpers/test-time override function.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | test-time override function
4 |
5 |
6 |
7 |
8 | ]]>
9 | ]]>
10 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/new test function.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test function
4 |
5 |
6 |
7 |
8 | ]]>
9 | ]]>
11 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/framework/decorators/AlphabeticallyOrderedTestsDecorator.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/weirderrordemos/BustedSetupTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/weirderrordemos/BustedTearDownTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/eclipse/snippets/mxunit/new test error path function cfscript.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | new test error path function cfscript
4 |
5 |
10 |
11 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/weirderrordemos/BustedConstructorTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/samples/MyComponent.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/css/modules/siteTitle.css:
--------------------------------------------------------------------------------
1 |
2 | a.m-siteTitle {
3 | color: #333333 ;
4 | display: block ;
5 | font-family: "Yanone Kaffeesatz" ;
6 | font-size: 34px ;
7 | height: 39px ;
8 | line-height: 39px ;
9 | text-decoration: none ;
10 | }
11 |
12 | a.m-siteTitle span.primary {
13 | display: inline-block ;
14 | font-weight: 700 ;
15 | text-transform: uppercase ;
16 | }
17 |
18 | a.m-siteTitle span.secondary {
19 | color: #CCCCCC ;
20 | display: inline-block ;
21 | font-weight: 200 ;
22 | margin-left: 4px ;
23 | }
24 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/PluginDemoTests/ThrowsAnErrorTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/controllers/account/index.cfm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | // Param the second-level event.
5 | param name="request.event[ 2 ]" type="string" default="edit";
6 |
7 |
8 | // Route the request based on the current event.
9 | switch (request.event[ 2 ]){
10 |
11 | case "changePassword":
12 | include "changePassword.cfm";
13 | break;
14 |
15 | case "edit":
16 | include "edit.cfm";
17 | break;
18 |
19 | // The provided event could not be matched.
20 | default:
21 | throw( type="InvalidEvent" );
22 | break;
23 |
24 | }
25 |
26 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/bugs/fixture/122/GoodTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/bugs/fixture/122/ParseErrorTest.cfc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/tests/mightymock/fixture/ParentSpyObject.cfc:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/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.
--------------------------------------------------------------------------------
/wwwroot/tests/server/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 |
--------------------------------------------------------------------------------
/wwwroot/tests/server/mxunit/resources/theme/footer.cfm:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |