├── src ├── dev │ ├── tests │ │ ├── unit │ │ │ ├── tmp │ │ │ │ └── .gitignore │ │ │ └── framework │ │ │ │ └── TechDivision │ │ │ │ └── MagentoUnitTesting │ │ │ │ ├── Exception.php │ │ │ │ └── Exception │ │ │ │ ├── Helper.php │ │ │ │ ├── TestCase.php │ │ │ │ └── Helper │ │ │ │ ├── Proxy.php │ │ │ │ └── Static.php │ │ ├── integration │ │ │ ├── tmp │ │ │ │ └── .gitignore │ │ │ ├── testsuite │ │ │ │ ├── Mage │ │ │ │ │ ├── Core │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ ├── Design │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── g │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ │ └── d │ │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ │ └── y │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ └── e │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ └── x │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ ├── area_two │ │ │ │ │ │ │ │ └── package_one │ │ │ │ │ │ │ │ │ └── theme_one │ │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ ├── design_area │ │ │ │ │ │ │ │ └── package_one │ │ │ │ │ │ │ │ │ └── theme_one │ │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ │ ├── skin_one │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ │ └── skin_two │ │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ │ ├── Mage_Catalog │ │ │ │ │ │ │ │ │ │ ├── theme_file.txt │ │ │ │ │ │ │ │ │ │ └── theme_file_with_2_dots..txt │ │ │ │ │ │ │ │ │ ├── skin │ │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ │ │ ├── logo.gif │ │ │ │ │ │ │ │ │ │ │ └── logo_email.gif │ │ │ │ │ │ │ │ │ │ │ ├── Module │ │ │ │ │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ │ │ │ │ │ └── locale │ │ │ │ │ │ │ │ │ │ │ └── fr_FR │ │ │ │ │ │ │ │ │ │ │ └── logo.gif │ │ │ │ │ │ │ │ │ └── locale │ │ │ │ │ │ │ │ │ │ └── en_US │ │ │ │ │ │ │ │ │ │ └── translate.csv │ │ │ │ │ │ │ │ └── publication │ │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ │ ├── square.gif │ │ │ │ │ │ │ │ │ └── rectangle.gif │ │ │ │ │ │ │ │ └── package │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── locale │ │ │ │ │ │ │ │ │ └── en_US │ │ │ │ │ │ │ │ │ │ └── fixture_translate.csv │ │ │ │ │ │ │ │ └── skin │ │ │ │ │ │ │ │ │ ├── theme │ │ │ │ │ │ │ │ │ ├── h1.gif │ │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ │ │ │ │ └── body.gif │ │ │ │ │ │ │ │ │ └── Namespace_Module │ │ │ │ │ │ │ │ │ │ └── absolute_valid_module.gif │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ └── h2.gif │ │ │ │ │ │ │ │ │ ├── recursive.gif │ │ │ │ │ │ │ │ │ └── recursive2.gif │ │ │ │ │ │ │ │ └── custom_theme │ │ │ │ │ │ │ │ └── locale │ │ │ │ │ │ │ │ └── en_US │ │ │ │ │ │ │ │ └── fixture_translate_two.csv │ │ │ │ │ │ │ └── locale │ │ │ │ │ │ │ └── en_US │ │ │ │ │ │ │ ├── Mage_Core.csv │ │ │ │ │ │ │ └── Mage_Catalog.csv │ │ │ │ │ └── Catalog │ │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── watermark.jpg │ │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ │ ├── magento_small_image.jpg │ │ │ │ │ │ └── magento_thumbnail.jpg │ │ │ │ │ │ └── controllers │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── product_image.png │ │ │ │ └── Varien │ │ │ │ │ └── Image │ │ │ │ │ └── _files │ │ │ │ │ ├── watermark.png │ │ │ │ │ └── image_adapters_test.png │ │ │ ├── .gitignore │ │ │ └── framework │ │ │ │ └── autoloadCore.php │ │ ├── performance │ │ │ ├── .gitignore │ │ │ └── apache-jmeter-2.7 │ │ │ │ ├── bin │ │ │ │ ├── examples │ │ │ │ │ ├── CSVSample_user.csv │ │ │ │ │ └── CSVSample_actions.csv │ │ │ │ ├── ApacheJMeter.jar │ │ │ │ ├── proxyserver.jks │ │ │ │ └── jmeterw.cmd │ │ │ │ ├── lib │ │ │ │ ├── jorphan.jar │ │ │ │ ├── bsf-2.4.0.jar │ │ │ │ ├── bsh-2.0b5.jar │ │ │ │ ├── bshclient.jar │ │ │ │ ├── oro-2.0.8.jar │ │ │ │ ├── bsf-api-3.1.jar │ │ │ │ ├── jdom-1.1.2.jar │ │ │ │ ├── jtidy-r938.jar │ │ │ │ ├── junit-4.10.jar │ │ │ │ ├── junit │ │ │ │ │ └── test.jar │ │ │ │ ├── logkit-2.0.jar │ │ │ │ ├── mail-1.4.4.jar │ │ │ │ ├── rhino-1.7R3.jar │ │ │ │ ├── soap-2.3.1.jar │ │ │ │ ├── xalan-2.7.1.jar │ │ │ │ ├── commons-io-2.2.jar │ │ │ │ ├── htmllexer-2.1.jar │ │ │ │ ├── htmlparser-2.1.jar │ │ │ │ ├── httpcore-4.1.4.jar │ │ │ │ ├── httpmime-4.1.3.jar │ │ │ │ ├── jcharts-0.7.5.jar │ │ │ │ ├── xstream-1.4.2.jar │ │ │ │ ├── activation-1.1.1.jar │ │ │ │ ├── commons-codec-1.6.jar │ │ │ │ ├── commons-jexl-1.1.jar │ │ │ │ ├── commons-lang-2.6.jar │ │ │ │ ├── commons-net-3.0.1.jar │ │ │ │ ├── httpclient-4.1.3.jar │ │ │ │ ├── serializer-2.7.1.jar │ │ │ │ ├── xercesImpl-2.9.1.jar │ │ │ │ ├── xml-apis-1.3.04.jar │ │ │ │ ├── xmlpull-1.1.3.1.jar │ │ │ │ ├── xpp3_min-1.1.4c.jar │ │ │ │ ├── commons-jexl-2.1.1.jar │ │ │ │ ├── excalibur-pool-1.2.jar │ │ │ │ ├── avalon-framework-4.1.4.jar │ │ │ │ ├── commons-httpclient-3.1.jar │ │ │ │ ├── commons-logging-1.1.1.jar │ │ │ │ ├── excalibur-logger-1.1.jar │ │ │ │ ├── ext │ │ │ │ │ ├── ApacheJMeter_core.jar │ │ │ │ │ ├── ApacheJMeter_ftp.jar │ │ │ │ │ ├── ApacheJMeter_http.jar │ │ │ │ │ ├── ApacheJMeter_java.jar │ │ │ │ │ ├── ApacheJMeter_jdbc.jar │ │ │ │ │ ├── ApacheJMeter_jms.jar │ │ │ │ │ ├── ApacheJMeter_junit.jar │ │ │ │ │ ├── ApacheJMeter_ldap.jar │ │ │ │ │ ├── ApacheJMeter_mail.jar │ │ │ │ │ ├── ApacheJMeter_tcp.jar │ │ │ │ │ ├── ApacheJMeter_native.jar │ │ │ │ │ ├── ApacheJMeter_report.jar │ │ │ │ │ ├── ApacheJMeter_components.jar │ │ │ │ │ ├── ApacheJMeter_functions.jar │ │ │ │ │ └── ApacheJMeter_monitors.jar │ │ │ │ ├── excalibur-instrument-1.0.jar │ │ │ │ ├── commons-collections-3.2.1.jar │ │ │ │ ├── excalibur-datasource-1.1.1.jar │ │ │ │ ├── geronimo-jms_1.1_spec-1.1.1.jar │ │ │ │ └── xmlgraphics-commons-1.3.1.jar │ │ │ │ ├── extras │ │ │ │ ├── expand.png │ │ │ │ ├── collapse.png │ │ │ │ ├── ant-jmeter-1.1.1.jar │ │ │ │ └── ConvertHTTPSampler.txt │ │ │ │ ├── docs │ │ │ │ ├── images │ │ │ │ │ ├── logo.jpg │ │ │ │ │ ├── asf-logo.gif │ │ │ │ │ ├── logo-small.jpg │ │ │ │ │ ├── jakarta-logo.gif │ │ │ │ │ └── screenshots │ │ │ │ │ │ ├── counter.png │ │ │ │ │ │ ├── summary.png │ │ │ │ │ │ ├── scoping1.png │ │ │ │ │ │ ├── scoping2.png │ │ │ │ │ │ ├── scoping3.png │ │ │ │ │ │ ├── testplan.png │ │ │ │ │ │ ├── workbench.png │ │ │ │ │ │ ├── bsf_listener.png │ │ │ │ │ │ ├── bsfsampler.png │ │ │ │ │ │ ├── http-request.png │ │ │ │ │ │ ├── ifcontroller.png │ │ │ │ │ │ ├── java_request.png │ │ │ │ │ │ ├── jms │ │ │ │ │ │ ├── jms_pub.png │ │ │ │ │ │ ├── jms_sub.png │ │ │ │ │ │ ├── jms_config.png │ │ │ │ │ │ ├── jms_messaging.png │ │ │ │ │ │ └── JMS_Point-to-Point.png │ │ │ │ │ │ ├── jmspublisher.png │ │ │ │ │ │ ├── ldap_request.png │ │ │ │ │ │ ├── ldaptest │ │ │ │ │ │ ├── add.png │ │ │ │ │ │ ├── delete.png │ │ │ │ │ │ ├── extadd.png │ │ │ │ │ │ ├── extdel.png │ │ │ │ │ │ ├── extmod.png │ │ │ │ │ │ ├── extmoddn.png │ │ │ │ │ │ ├── extsbind.png │ │ │ │ │ │ ├── modify.png │ │ │ │ │ │ ├── search.png │ │ │ │ │ │ ├── extcompare.png │ │ │ │ │ │ ├── extsearch.png │ │ │ │ │ │ ├── viewtable.png │ │ │ │ │ │ ├── extthreadbind.png │ │ │ │ │ │ ├── extviewtree.png │ │ │ │ │ │ ├── threadgroup.png │ │ │ │ │ │ ├── extthreadgroup.png │ │ │ │ │ │ ├── extthreadunbind.png │ │ │ │ │ │ ├── requestdefaults.png │ │ │ │ │ │ ├── extrequestdefaults.png │ │ │ │ │ │ └── login-config-element.png │ │ │ │ │ │ ├── login-config.png │ │ │ │ │ │ ├── mirrorserver.png │ │ │ │ │ │ ├── modification.png │ │ │ │ │ │ ├── save_image.png │ │ │ │ │ │ ├── savetofile.png │ │ │ │ │ │ ├── smtp_sampler.png │ │ │ │ │ │ ├── soap_sampler.png │ │ │ │ │ │ ├── tcpsampler.png │ │ │ │ │ │ ├── test_action.png │ │ │ │ │ │ ├── threadgroup.png │ │ │ │ │ │ ├── url_rewriter.png │ │ │ │ │ │ ├── user_params.png │ │ │ │ │ │ ├── bsf_assertion.png │ │ │ │ │ │ ├── bsh_assertion.png │ │ │ │ │ │ ├── class_diagram.gif │ │ │ │ │ │ ├── debug_sampler.png │ │ │ │ │ │ ├── graph_results.png │ │ │ │ │ │ ├── java_defaults.png │ │ │ │ │ │ ├── jmssubscriber.png │ │ │ │ │ │ ├── junit_sampler.png │ │ │ │ │ │ ├── ldap_defaults.png │ │ │ │ │ │ ├── monitor_health.png │ │ │ │ │ │ ├── parameter_mask.png │ │ │ │ │ │ ├── proxy_control.png │ │ │ │ │ │ ├── size_assertion.png │ │ │ │ │ │ ├── summary_report.png │ │ │ │ │ │ ├── table_results.png │ │ │ │ │ │ ├── test_fragment.png │ │ │ │ │ │ ├── xml_assertion.png │ │ │ │ │ │ ├── accesslogsampler.png │ │ │ │ │ │ ├── aggregate_graph.png │ │ │ │ │ │ ├── aggregate_report.png │ │ │ │ │ │ ├── assertion │ │ │ │ │ │ ├── compare.png │ │ │ │ │ │ ├── smime.png │ │ │ │ │ │ ├── assertion.png │ │ │ │ │ │ ├── example1a.png │ │ │ │ │ │ ├── example1b.png │ │ │ │ │ │ ├── HTMLAssertion.png │ │ │ │ │ │ ├── assertionscope.png │ │ │ │ │ │ ├── example1c-fail.png │ │ │ │ │ │ ├── example1c-pass.png │ │ │ │ │ │ ├── MD5HexAssertion.png │ │ │ │ │ │ ├── assertionscopevar.png │ │ │ │ │ │ └── XMLSchemaAssertion.png │ │ │ │ │ │ ├── assertion_results.png │ │ │ │ │ │ ├── beanshellsampler.png │ │ │ │ │ │ ├── bsf_postprocessor.png │ │ │ │ │ │ ├── bsf_preprocessor.png │ │ │ │ │ │ ├── csvdatasetconfig.png │ │ │ │ │ │ ├── graphfullresults.png │ │ │ │ │ │ ├── html_link_parser.png │ │ │ │ │ │ ├── includecontroller.png │ │ │ │ │ │ ├── keystore_config.png │ │ │ │ │ │ ├── ldapext_defaults.png │ │ │ │ │ │ ├── ldapext_request.png │ │ │ │ │ │ ├── mailervisualizer.png │ │ │ │ │ │ ├── module_controller.png │ │ │ │ │ │ ├── monitor_screencap.png │ │ │ │ │ │ ├── property_display.png │ │ │ │ │ │ ├── random_variable.png │ │ │ │ │ │ ├── regex_extractor.png │ │ │ │ │ │ ├── remote │ │ │ │ │ │ └── run-menu00.gif │ │ │ │ │ │ ├── runtimecontroller.png │ │ │ │ │ │ ├── simpledatawriter.png │ │ │ │ │ │ ├── spline_visualizer.png │ │ │ │ │ │ ├── switchcontroller.png │ │ │ │ │ │ ├── tcpsamplerconfig.png │ │ │ │ │ │ ├── timers │ │ │ │ │ │ ├── bsf_timer.png │ │ │ │ │ │ ├── sync_timer.png │ │ │ │ │ │ ├── beanshell_timer.png │ │ │ │ │ │ ├── constant_timer.png │ │ │ │ │ │ ├── gauss_random_timer.png │ │ │ │ │ │ ├── poisson_random_timer.png │ │ │ │ │ │ ├── uniform_random_timer.png │ │ │ │ │ │ └── constant_throughput_timer.png │ │ │ │ │ │ ├── view_results_tree.png │ │ │ │ │ │ ├── whilecontroller.png │ │ │ │ │ │ ├── xpath_assertion.png │ │ │ │ │ │ ├── xpath_extractor.png │ │ │ │ │ │ ├── beanshell_listener.png │ │ │ │ │ │ ├── debug_postprocessor.png │ │ │ │ │ │ ├── distribution_graph.png │ │ │ │ │ │ ├── duration_assertion.png │ │ │ │ │ │ ├── ftptest │ │ │ │ │ │ ├── ftp-request.png │ │ │ │ │ │ ├── ftp-defaults.png │ │ │ │ │ │ ├── ftp-defaults2.png │ │ │ │ │ │ ├── ftp-request2.png │ │ │ │ │ │ ├── spline-results.png │ │ │ │ │ │ └── threadgroup2.png │ │ │ │ │ │ ├── jdbc-post-processor.png │ │ │ │ │ │ ├── jdbc-pre-processor.png │ │ │ │ │ │ ├── log_errors_counter.png │ │ │ │ │ │ ├── mailreader_sampler.png │ │ │ │ │ │ ├── os_process_sampler.png │ │ │ │ │ │ ├── setup_thread_group.png │ │ │ │ │ │ ├── user_param_modifier.gif │ │ │ │ │ │ ├── webservice_sampler.png │ │ │ │ │ │ ├── webtest │ │ │ │ │ │ ├── http_login.png │ │ │ │ │ │ ├── threadgroup.png │ │ │ │ │ │ ├── http-defaults1.png │ │ │ │ │ │ ├── http-defaults2.png │ │ │ │ │ │ ├── http-request1.png │ │ │ │ │ │ ├── http-request2.png │ │ │ │ │ │ └── threadgroup2.png │ │ │ │ │ │ ├── beanshell_preprocessor.png │ │ │ │ │ │ ├── changes │ │ │ │ │ │ ├── 2.6 │ │ │ │ │ │ │ ├── 01_toolbar.png │ │ │ │ │ │ │ ├── 06_post_data.png │ │ │ │ │ │ │ ├── 24_diskstore.png │ │ │ │ │ │ │ ├── 25_selector.png │ │ │ │ │ │ │ ├── 05_search_tree.png │ │ │ │ │ │ │ ├── 11_jks_keystore.png │ │ │ │ │ │ │ ├── 16_udv_comments.png │ │ │ │ │ │ │ ├── 28_loggerpanel.png │ │ │ │ │ │ │ ├── 03_look_and_feel.png │ │ │ │ │ │ │ ├── 08_file_protocol.png │ │ │ │ │ │ │ ├── 10_child_sampler.png │ │ │ │ │ │ │ ├── 14_reset_counter.png │ │ │ │ │ │ │ ├── 15_random_string.png │ │ │ │ │ │ │ ├── 21_poisson_timer.png │ │ │ │ │ │ │ ├── 22_drag_and_drop.png │ │ │ │ │ │ │ ├── 23_confirm_remove.png │ │ │ │ │ │ │ ├── 18_change_ctl_type.png │ │ │ │ │ │ │ ├── 02_ignore_pause_timers.png │ │ │ │ │ │ │ ├── 13_aggregate_graph_bar.png │ │ │ │ │ │ │ ├── 19_jdbc_pre_post_proc.png │ │ │ │ │ │ │ ├── 26_ignore_child_failed.png │ │ │ │ │ │ │ ├── 28_loggerpanel_option.png │ │ │ │ │ │ │ ├── 04_duplicate_context_menu.png │ │ │ │ │ │ │ ├── 09_file_protocol_embedded.png │ │ │ │ │ │ │ ├── 17_vrt_max_size_display.png │ │ │ │ │ │ │ ├── 20_jdbc_trans_isolation.png │ │ │ │ │ │ │ ├── 12_aggregate_graph_settings.png │ │ │ │ │ │ │ ├── 27_succes_with_child_failed.png │ │ │ │ │ │ │ └── 07_multiple_selection_params.png │ │ │ │ │ │ └── 2.7 │ │ │ │ │ │ │ ├── 09_detail_box.png │ │ │ │ │ │ │ ├── 13_jms_properties.png │ │ │ │ │ │ │ ├── 14_ws_document_cache.png │ │ │ │ │ │ │ ├── 01_os_process_sampler.png │ │ │ │ │ │ │ ├── 08_param_button_detail.png │ │ │ │ │ │ │ ├── 12_jms_sending_objects.png │ │ │ │ │ │ │ ├── 15_ws_maintain_session.png │ │ │ │ │ │ │ ├── 16_log_errors_counter.png │ │ │ │ │ │ │ ├── 07_test_action_next_iter.png │ │ │ │ │ │ │ ├── 10_mailer_visualizer_gui.png │ │ │ │ │ │ │ ├── 02_os_process_example_results.png │ │ │ │ │ │ │ ├── 04_aggregate_graph_parameters.png │ │ │ │ │ │ │ ├── 03_aggregate_graph_with_new_cols.png │ │ │ │ │ │ │ ├── 06_jmeter_ant_task_report_errors.png │ │ │ │ │ │ │ ├── 05_jmeter_ant_task_report_success.png │ │ │ │ │ │ │ └── 11_jms_non_persistent_delivery_mode.png │ │ │ │ │ │ ├── function_helper_dialog.png │ │ │ │ │ │ ├── http-request-raw-body.png │ │ │ │ │ │ ├── jdbctest │ │ │ │ │ │ ├── JDBCRequest.png │ │ │ │ │ │ ├── JDBCRequest2.png │ │ │ │ │ │ ├── JDBCRequest3.png │ │ │ │ │ │ ├── graph-results.png │ │ │ │ │ │ ├── jdbc-config.png │ │ │ │ │ │ ├── jdbc-request.png │ │ │ │ │ │ ├── threadgroup1.png │ │ │ │ │ │ └── threadgroup2.png │ │ │ │ │ │ ├── randomordercontroller.png │ │ │ │ │ │ ├── sample_result_config.png │ │ │ │ │ │ ├── searching │ │ │ │ │ │ ├── raw-search.png │ │ │ │ │ │ ├── regexp-search.png │ │ │ │ │ │ ├── raw-search-result.png │ │ │ │ │ │ └── regexp-search-result.png │ │ │ │ │ │ ├── simple_config_element.png │ │ │ │ │ │ ├── summary_report_grouped.png │ │ │ │ │ │ ├── teardown_thread_group.png │ │ │ │ │ │ ├── throughput_controller.png │ │ │ │ │ │ ├── transactioncontroller.png │ │ │ │ │ │ ├── url_rewrite_example_a.png │ │ │ │ │ │ ├── url_rewrite_example_b.gif │ │ │ │ │ │ ├── url_rewrite_example_b.png │ │ │ │ │ │ ├── user_defined_variables.png │ │ │ │ │ │ ├── view_results_tree_xml.png │ │ │ │ │ │ ├── aggregate_graph_settings.png │ │ │ │ │ │ ├── aggregate_report_grouped.png │ │ │ │ │ │ ├── beanshell_postprocessor.png │ │ │ │ │ │ ├── view_results_tree_regex.png │ │ │ │ │ │ ├── jdbc-config │ │ │ │ │ │ ├── jdbc-sql-query.png │ │ │ │ │ │ └── jdbc-conn-config.png │ │ │ │ │ │ ├── logic-controller │ │ │ │ │ │ ├── interleave.png │ │ │ │ │ │ ├── interleave2.png │ │ │ │ │ │ ├── interleave3.png │ │ │ │ │ │ ├── loop-example.png │ │ │ │ │ │ ├── foreach-example.png │ │ │ │ │ │ ├── loop-controller.png │ │ │ │ │ │ ├── simple-example.png │ │ │ │ │ │ ├── foreach-example2.png │ │ │ │ │ │ ├── once-only-example.png │ │ │ │ │ │ ├── random-controller.png │ │ │ │ │ │ ├── simple-controller.png │ │ │ │ │ │ ├── foreach-controller.png │ │ │ │ │ │ ├── once-only-controller.png │ │ │ │ │ │ ├── recording-controller.png │ │ │ │ │ │ └── interleave-controller.png │ │ │ │ │ │ ├── resultstatusactionhandler.png │ │ │ │ │ │ ├── http-config │ │ │ │ │ │ ├── http-auth-manager.png │ │ │ │ │ │ ├── http-cache-manager.png │ │ │ │ │ │ ├── http-config-example.png │ │ │ │ │ │ ├── http-cookie-manager.gif │ │ │ │ │ │ ├── http-cookie-manager.png │ │ │ │ │ │ ├── http-header-manager.png │ │ │ │ │ │ ├── auth-manager-example1a.gif │ │ │ │ │ │ ├── auth-manager-example1b.png │ │ │ │ │ │ ├── http-request-defaults.png │ │ │ │ │ │ ├── header-manager-example1a.gif │ │ │ │ │ │ └── header-manager-example1b.png │ │ │ │ │ │ ├── http-request-confirm-raw-body.png │ │ │ │ │ │ ├── comparison_assertion_visualizer.png │ │ │ │ │ │ ├── ftp-config │ │ │ │ │ │ └── ftp-request-defaults.png │ │ │ │ │ │ └── http-request-raw-single-parameter.png │ │ │ │ └── api │ │ │ │ │ ├── resources │ │ │ │ │ └── inherit.gif │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ ├── jorphan │ │ │ │ │ ├── io │ │ │ │ │ │ └── package-frame.html │ │ │ │ │ └── test │ │ │ │ │ │ └── package-frame.html │ │ │ │ │ └── jmeter │ │ │ │ │ ├── swing │ │ │ │ │ └── package-frame.html │ │ │ │ │ └── services │ │ │ │ │ └── package-frame.html │ │ │ │ ├── jar │ │ │ │ └── ApacheJMeter.jar │ │ │ │ └── printable_docs │ │ │ │ ├── extending │ │ │ │ └── jmeter_tutorial.pdf │ │ │ │ └── usermanual │ │ │ │ ├── junitsampler_tutorial.pdf │ │ │ │ ├── jmeter_proxy_step_by_step.pdf │ │ │ │ ├── include_controller_tutorial.pdf │ │ │ │ ├── jmeter_accesslog_sampler_step_by_step.pdf │ │ │ │ └── jmeter_distributed_testing_step_by_step.pdf │ │ ├── static │ │ │ ├── .gitignore │ │ │ └── testsuite │ │ │ │ └── Php │ │ │ │ ├── Exemplar │ │ │ │ └── _files │ │ │ │ │ ├── phpcs │ │ │ │ │ └── input │ │ │ │ │ │ ├── general │ │ │ │ │ │ ├── line_endings_cr.php │ │ │ │ │ │ ├── line_endings_crlf.php │ │ │ │ │ │ ├── closing_tag.php │ │ │ │ │ │ ├── closing_tag_middle.php │ │ │ │ │ │ ├── indentation_nonexact_code.php │ │ │ │ │ │ ├── indentation.php │ │ │ │ │ │ ├── indentation_nonexact_phpdoc.php │ │ │ │ │ │ └── line_length.php │ │ │ │ │ │ ├── coding_style │ │ │ │ │ │ ├── demarcation │ │ │ │ │ │ │ ├── asp_tag.php │ │ │ │ │ │ │ ├── short_tag.php │ │ │ │ │ │ │ └── short_echo.php │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ ├── brace_same_line.php │ │ │ │ │ │ │ ├── brace_with_spaces.php │ │ │ │ │ │ │ ├── brace_with_code.php │ │ │ │ │ │ │ └── brace_several_lines_below.php │ │ │ │ │ │ ├── if_else │ │ │ │ │ │ │ ├── braces_absent.php │ │ │ │ │ │ │ ├── brace_no_space.php │ │ │ │ │ │ │ ├── brace_double_space.php │ │ │ │ │ │ │ ├── brace_next_line.php │ │ │ │ │ │ │ ├── closing_brace_same_line.php │ │ │ │ │ │ │ ├── parenthesis_no_space.php │ │ │ │ │ │ │ ├── wrong_indentation.php │ │ │ │ │ │ │ ├── multiline_brace_same_line.php │ │ │ │ │ │ │ ├── multiline_operator_same_line.php │ │ │ │ │ │ │ ├── closing_brace_wrong_indentation.php │ │ │ │ │ │ │ ├── multiline_wrong_indentation.php │ │ │ │ │ │ │ ├── normal.php │ │ │ │ │ │ │ ├── normal_multiline.php │ │ │ │ │ │ │ ├── wrong_spacing_operators_logical.php │ │ │ │ │ │ │ └── wrong_spacing_operators.php │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── brace_same_line.php │ │ │ │ │ │ │ ├── brace_with_spaces.php │ │ │ │ │ │ │ ├── brace_with_code.php │ │ │ │ │ │ │ ├── calltime_pass_by_reference_mimic.php │ │ │ │ │ │ │ ├── brace_several_lines_below.php │ │ │ │ │ │ │ ├── calltime_pass_by_reference.php │ │ │ │ │ │ │ ├── normal_arg_reference.php │ │ │ │ │ │ │ ├── normal_lambda.php │ │ │ │ │ │ │ ├── method_without_scope.php │ │ │ │ │ │ │ ├── unneeded_multiline.php │ │ │ │ │ │ │ └── normal_func.php │ │ │ │ │ │ ├── function_usage │ │ │ │ │ │ │ ├── wrong_spacing.php │ │ │ │ │ │ │ └── wrong_spacing_ends.php │ │ │ │ │ │ ├── switch │ │ │ │ │ │ │ └── normal.php │ │ │ │ │ │ └── inline_doc │ │ │ │ │ │ │ ├── normal.php │ │ │ │ │ │ │ └── format │ │ │ │ │ │ │ └── wrong_align.php │ │ │ │ │ │ └── naming │ │ │ │ │ │ ├── variable │ │ │ │ │ │ ├── capital_start.php │ │ │ │ │ │ ├── normal_plain.php │ │ │ │ │ │ ├── normal_camelcase.php │ │ │ │ │ │ ├── underscore_start.php │ │ │ │ │ │ ├── underscore_middle.php │ │ │ │ │ │ ├── normal_loop.php │ │ │ │ │ │ └── short_name_in_long_loop.php │ │ │ │ │ │ ├── function │ │ │ │ │ │ ├── normal_plain.php │ │ │ │ │ │ ├── capital_start.php │ │ │ │ │ │ ├── underscore_start.php │ │ │ │ │ │ ├── normal_camelcase.php │ │ │ │ │ │ └── underscore_middle.php │ │ │ │ │ │ ├── class │ │ │ │ │ │ ├── one_word.php │ │ │ │ │ │ ├── minuscule.php │ │ │ │ │ │ ├── underscore_start.php │ │ │ │ │ │ ├── two_capitals.php │ │ │ │ │ │ └── two_underscores.php │ │ │ │ │ │ ├── property │ │ │ │ │ │ ├── normal_plain.php │ │ │ │ │ │ ├── capital_start.php │ │ │ │ │ │ ├── underscore_middle.php │ │ │ │ │ │ ├── normal_camelcase.php │ │ │ │ │ │ ├── underscore_absent.php │ │ │ │ │ │ ├── underscore_start_public.php │ │ │ │ │ │ └── normal_underscore.php │ │ │ │ │ │ ├── method │ │ │ │ │ │ ├── capital_start.php │ │ │ │ │ │ ├── normal_plain.php │ │ │ │ │ │ ├── normal_camelcase.php │ │ │ │ │ │ ├── underscore_middle.php │ │ │ │ │ │ ├── underscore_start_public.php │ │ │ │ │ │ └── normal_underscore_start.php │ │ │ │ │ │ └── constant │ │ │ │ │ │ ├── normal_constant.php │ │ │ │ │ │ └── minuscule_letter.php │ │ │ │ │ └── phpmd │ │ │ │ │ └── input │ │ │ │ │ ├── unused.php │ │ │ │ │ ├── inheritance_depth.php │ │ │ │ │ ├── prohibited_statement.php │ │ │ │ │ ├── parameter_list.php │ │ │ │ │ ├── prohibited_statement_goto.php │ │ │ │ │ ├── descendant_count.php │ │ │ │ │ ├── field_count.php │ │ │ │ │ └── naming.php │ │ │ │ └── _files │ │ │ │ ├── blacklist │ │ │ │ └── core.txt │ │ │ │ └── whitelist │ │ │ │ └── core.txt │ │ └── phpunit-3.7.37.phar │ ├── .htaccess │ ├── tools │ │ └── batch_tests │ │ │ ├── batch.sh │ │ │ └── batch.bat │ └── shell │ │ └── cron.sh ├── downloader │ └── pearlib │ │ ├── .htaccess │ │ ├── php │ │ ├── Structures │ │ │ ├── Graph.php │ │ │ └── Graph │ │ │ │ ├── Node.php │ │ │ │ └── Manipulator │ │ │ │ ├── AcyclicTest.php │ │ │ │ └── TopologicalSorter.php │ │ └── PEAR │ │ │ ├── FixPHP5PEARWarnings.php │ │ │ ├── Command │ │ │ ├── Build.xml │ │ │ ├── Mage.xml │ │ │ ├── Mirror.xml │ │ │ └── Auth.xml │ │ │ └── Installer │ │ │ └── Role │ │ │ ├── Src.xml │ │ │ ├── Ext.xml │ │ │ ├── Data.xml │ │ │ ├── Doc.xml │ │ │ ├── Test.xml │ │ │ ├── Cfg.xml │ │ │ ├── Php.xml │ │ │ ├── Script.xml │ │ │ ├── Www.xml │ │ │ ├── Mage.xml │ │ │ ├── Magemedia.xml │ │ │ ├── Magetest.xml │ │ │ ├── Magecore.xml │ │ │ ├── Magelib.xml │ │ │ ├── Mageskin.xml │ │ │ ├── Mageweb.xml │ │ │ ├── Mageetc.xml │ │ │ ├── Magelocale.xml │ │ │ ├── Magedesign.xml │ │ │ ├── Magelocal.xml │ │ │ └── Magecommunity.xml │ │ ├── clean │ │ ├── pecl │ │ ├── pear │ │ └── peardev ├── lib │ ├── PHPUnit │ │ └── Extensions │ │ │ ├── SeleniumTestCase │ │ │ └── Autoload.php │ │ │ ├── Story │ │ │ └── ResultPrinter │ │ │ │ └── Template │ │ │ │ ├── scenario_header.html.dist │ │ │ │ ├── step.html.dist │ │ │ │ └── scenario.html.dist │ │ │ └── SeleniumCommon │ │ │ └── ExitHandler.php │ └── Magento │ │ ├── Profiler.php │ │ └── Exception.php └── app │ ├── code │ └── community │ │ ├── Mage │ │ └── Adminhtml │ │ │ └── Block │ │ │ └── Widget │ │ │ └── Grid │ │ │ └── Column │ │ │ └── Renderer │ │ │ └── Interface.php │ │ └── TechDivision │ │ └── MagentoUnitTesting │ │ └── Helper │ │ └── Data.php │ └── etc │ └── modules │ └── TechDivision_MagentoUnitTesting.xml ├── .gitmodules ├── AUTHORS.txt ├── .gitignore └── composer.json /src/dev/tests/unit/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /src/dev/tests/performance/.gitignore: -------------------------------------------------------------------------------- 1 | /config.php 2 | -------------------------------------------------------------------------------- /src/dev/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /src/dev/tools/batch_tests/batch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | php batch.php 3 | -------------------------------------------------------------------------------- /src/downloader/pearlib/.htaccess: -------------------------------------------------------------------------------- 1 | Order deny,allow 2 | Deny from all 3 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/bin/examples/CSVSample_user.csv: -------------------------------------------------------------------------------- 1 | u1,p1 2 | u2,p2 -------------------------------------------------------------------------------- /src/dev/tests/static/.gitignore: -------------------------------------------------------------------------------- 1 | *.xml 2 | framework/tests/unit/*.xml 3 | report/ 4 | tmp/ 5 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/bin/examples/CSVSample_actions.csv: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/general/line_endings_cr.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/dev/tests/integration/.gitignore: -------------------------------------------------------------------------------- 1 | /*.xml 2 | /etc/*.xml 3 | !/etc/integration-test-config.xml 4 | /tmp/ 5 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/design_area/package_one/theme_one/skin/skin_one/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/design_area/package_one/theme_one/skin/skin_two/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/Mage_Catalog/theme_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/skin/default/images/logo.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/demarcation/asp_tag.php: -------------------------------------------------------------------------------- 1 | <% 2 | echo 1; 3 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/Design/Source/_files/design/frontend/default/default/skin/default/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/skin/default/Module/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/skin/default/images/logo_email.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/skin/default/locale/fr_FR/logo.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/demarcation/short_tag.php: -------------------------------------------------------------------------------- 1 | 4 | Jürgen Schuch -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/if_else/braces_absent.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | Some text there 6 | 7 | 2 | 3 |

{name}

4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/functions/calltime_pass_by_reference_mimic.php: -------------------------------------------------------------------------------- 1 | 2 | {text} 3 | {action} 4 |   5 | 6 | 7 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/logo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/logo-small.jpg -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/extras/ant-jmeter-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/extras/ant-jmeter-1.1.1.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/commons-jexl-2.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/commons-jexl-2.1.1.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/excalibur-pool-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/excalibur-pool-1.2.jar -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/if_else/multiline_wrong_indentation.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Catalog/_files/magento_small_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/integration/testsuite/Mage/Catalog/_files/magento_small_image.jpg -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Catalog/_files/magento_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/integration/testsuite/Mage/Catalog/_files/magento_thumbnail.jpg -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Varien/Image/_files/image_adapters_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/integration/testsuite/Varien/Image/_files/image_adapters_test.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/counter.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/summary.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/excalibur-datasource-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/excalibur-datasource-1.1.1.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/ext/ApacheJMeter_components.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/ext/ApacheJMeter_components.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/ext/ApacheJMeter_functions.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/ext/ApacheJMeter_functions.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/ext/ApacheJMeter_monitors.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/ext/ApacheJMeter_monitors.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/geronimo-jms_1.1_spec-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/geronimo-jms_1.1_spec-1.1.1.jar -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/lib/xmlgraphics-commons-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/lib/xmlgraphics-commons-1.3.1.jar -------------------------------------------------------------------------------- /src/downloader/pearlib/php/Structures/Graph/Manipulator/TopologicalSorter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/downloader/pearlib/php/Structures/Graph/Manipulator/TopologicalSorter.php -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Core/Model/_files/design/frontend/test/default/locale/en_US/translate.csv: -------------------------------------------------------------------------------- 1 | "Design value to translate","Design translated value" 2 | "translation to the same value","translation to the same value" 3 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/scoping1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/scoping1.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/scoping2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/scoping2.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/scoping3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/scoping3.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/testplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/testplan.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/workbench.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsf_listener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsf_listener.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsfsampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsfsampler.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/http-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/http-request.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ifcontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ifcontroller.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/java_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/java_request.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jms/jms_pub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jms/jms_pub.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jms/jms_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jms/jms_sub.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jmspublisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jmspublisher.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ldap_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ldap_request.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ldaptest/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ldaptest/add.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/login-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/login-config.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/mirrorserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/mirrorserver.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/modification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/modification.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/save_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/save_image.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/savetofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/savetofile.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/smtp_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/smtp_sampler.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/soap_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/soap_sampler.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/tcpsampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/tcpsampler.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/test_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/test_action.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/threadgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/threadgroup.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/url_rewriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/url_rewriter.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/user_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/user_params.png -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/product_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/integration/testsuite/Mage/Catalog/controllers/_files/product_image.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsf_assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsf_assertion.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsh_assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/bsh_assertion.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/class_diagram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/class_diagram.gif -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/debug_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/debug_sampler.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/graph_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/graph_results.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/java_defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/java_defaults.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jms/jms_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jms/jms_config.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jmssubscriber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/jmssubscriber.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/junit_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/junit_sampler.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ldap_defaults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/ldap_defaults.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/monitor_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/monitor_health.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/parameter_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/parameter_mask.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/proxy_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/proxy_control.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/size_assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/size_assertion.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/summary_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/summary_report.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/table_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/table_results.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/test_fragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/test_fragment.png -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/xml_assertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techdivision/TechDivision_MagentoUnitTesting/HEAD/src/dev/tests/performance/apache-jmeter-2.7/docs/images/screenshots/xml_assertion.png -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/functions/normal_arg_reference.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Build an Extension From C Source 4 | doBuild 5 | b 6 | 7 | [package.xml] 8 | Builds one or more extensions contained in a package. 9 | 10 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/input/inheritance_depth.php: -------------------------------------------------------------------------------- 1 | 2 | extsrc 3 | zendextsrc 4 | 1 5 | temp_dir 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/lib/PHPUnit/Extensions/Story/ResultPrinter/Template/scenario.html.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 |

[+] {name}

4 | 5 | 6 | 7 | 8 | 9 | {steps} 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/general/line_length.php: -------------------------------------------------------------------------------- 1 | 2 | extbin 3 | zendextbin 4 | 1 5 | ext_dir 6 | 1 7 | 8 | 9 | 10 | 1 11 | 12 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/functions/method_without_scope.php: -------------------------------------------------------------------------------- 1 | = count($array)) { 10 | goto end; 11 | } 12 | $callback($array[$index]); 13 | $index++; 14 | } 15 | end: 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/switch/normal.php: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | data_dir 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Doc.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | doc_dir 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Test.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | test_dir 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Cfg.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | cfg_dir 9 | 10 | 1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Command/Mage.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Build Magento Package 4 | doPackage 5 | mp 6 | 7 | 8 | T 9 | Target directory for package file. 10 | TARGETDIR 11 | 12 | 13 | [descfile] 14 | Creates a Magento specific PEAR package from its description file. 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Php.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | php_dir 9 | 1 10 | 11 | 1 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Script.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | bin_dir 9 | 1 10 | 11 | 12 | 1 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Www.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | extsrc 4 | extbin 5 | zendextsrc 6 | zendextbin 7 | 1 8 | www_dir 9 | 1 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/extras/ConvertHTTPSampler.txt: -------------------------------------------------------------------------------- 1 | === HTTPSampler to HTTPSampler2 convertion === 2 | 3 | If the testcase was created with an old version, load it into 2.1.1 and save it. 4 | Edit the testcase and replace the following: 5 | 6 | Old 7 | === 8 | 9 | ... 10 | 11 | 12 | New 13 | === 14 | 15 | ... 16 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/_files/blacklist/core.txt: -------------------------------------------------------------------------------- 1 | app/code/core/Mage/DesignEditor/view 2 | app/code/core/Mage/User/view 3 | dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/TestSuite/_files 4 | dev/tests/integration/testsuite/integrity/modular/TemplateFilesTest.php 5 | dev/tests/integration/testsuite/integrity/theme/TemplateFilesTest.php 6 | dev/tests/integration/testsuite/Mage/Core/Block/_files 7 | dev/tests/integration/tmp 8 | dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input 9 | dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/input 10 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Mage.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_dir 5 | 1 6 | 7 | 8 | 9 | 10 | 11 | 12 | directory 13 | . 14 | Magento root directory 15 | Magento root directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/inline_doc/normal.php: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_media_dir 5 | 1 6 | 7 | 8 | 9 | 10 | 11 | 12 | directory 13 | ./media 14 | Magento media directory 15 | Magento media directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Magetest.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_test_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./tests 14 | Magento tests directory 15 | Magento tests directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Magecore.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_core_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./app/code/core 14 | Magento root directory 15 | Magento root directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Magelib.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_lib_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./lib 14 | Magento libraries directory 15 | Magento libraries directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Mageskin.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_skin_dir 5 | 1 6 | 7 | 8 | 9 | 10 | 11 | 12 | directory 13 | ./skin 14 | Magento CSS/Images/Javascript skin directory 15 | Magento skin directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Mageweb.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_web_dir 5 | 1 6 | 7 | 8 | 9 | 10 | 11 | 12 | directory 13 | . 14 | Magento web accessible root directory 15 | Magento web accessible root directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Mageetc.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_etc_dir 5 | 1 6 | 7 | 8 | 9 | 10 | 11 | 12 | directory 13 | ./app/etc 14 | Magento global configuration directory 15 | Magento global configuration directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Magelocale.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_locale_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./app/locale 14 | Magento Locale i18n directory 15 | Magento Locale i18n directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Magedesign.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_design_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./app/design 14 | Magento design packages directory 15 | Magento design packages directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Installer/Role/Magelocal.xml: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_local_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./app/code/local 14 | Magento Local Code pool repository directory 15 | Magento Local Code pool repository directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/input/descendant_count.php: -------------------------------------------------------------------------------- 1 | 2 | php 3 | 1 4 | mage_community_dir 5 | 1 6 | 7 | 1 8 | 9 | 10 | 11 | 12 | directory 13 | ./app/code/community 14 | Magento Community Code pool repository directory 15 | Magento Community Code pool repository directory 16 | File Locations 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpmd/input/field_count.php: -------------------------------------------------------------------------------- 1 | field01; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Command/Mirror.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Downloads each available package from the default channel 4 | doDownloadAll 5 | da 6 | 7 | 8 | c 9 | specify a channel other than the default channel 10 | CHAN 11 | 12 | 13 | 14 | Requests a list of available packages from the default channel ({config default_channel}) 15 | and downloads them to current working directory. Note: only 16 | packages within preferred_state ({config preferred_state}) will be downloaded 17 | 18 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "techdivision/techdivision_magentounittesting", 3 | "type": "magento-module", 4 | "description": "This projects aims to bring the core tests and the important parts of the Magento 2 testsuite to Magento 1.", 5 | "homepage": "https://github.com/techdivision/TechDivision_MagentoUnitTesting", 6 | "license": ["OSL-3.0"], 7 | "repositories": [ 8 | { 9 | "type": "vcs", 10 | "url": "https://github.com/techdivision/TechDivision_MagentoUnitTesting" 11 | } 12 | ], 13 | "require": { 14 | "php" : ">=5.3.0", 15 | "phpunit/phpunit": "3.7.37", 16 | "mikey179/vfsStream": "1.2.0" 17 | }, 18 | "config" : { 19 | "vendor-dir" : "src/lib" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/dev/shell/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # location of the php binary 3 | if [ ! "$1" = "" ] ; then 4 | CRONSCRIPT=$1 5 | else 6 | CRONSCRIPT=../../pub/cron.php 7 | fi 8 | 9 | PHP_BIN=`which php` 10 | 11 | # absolute path to magento installation 12 | INSTALLDIR=`echo $0 | sed 's/cron\.sh//g'`"../" 13 | 14 | # prepend the intallation path if not given an absolute path 15 | if [ "$INSTALLDIR" != "" -a "`expr index $CRONSCRIPT /`" != "1" ];then 16 | if ! ps auxwww | grep "$INSTALLDIR""$CRONSCRIPT" | grep -v grep 1>/dev/null 2>/dev/null ; then 17 | $PHP_BIN "$INSTALLDIR""$CRONSCRIPT" & 18 | fi 19 | else 20 | if ! ps auxwww | grep " $CRONSCRIPT" | grep -v grep | grep -v cron.sh 1>/dev/null 2>/dev/null ; then 21 | $PHP_BIN $CRONSCRIPT & 22 | fi 23 | fi 24 | -------------------------------------------------------------------------------- /src/app/code/community/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Interface.php: -------------------------------------------------------------------------------- 1 | 17 | */ 18 | 19 | interface Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Interface 20 | { 21 | 22 | /** 23 | * Renders grid column 24 | * 25 | * @param Varien_Object $row 26 | */ 27 | public function render(Varien_Object $row); 28 | } 29 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/naming/variable/short_name_in_long_loop.php: -------------------------------------------------------------------------------- 1 | $b) { 3 | echo 'ab'; 4 | } 5 | 6 | if ($a> $b) { 7 | echo 'ab'; 8 | } 9 | 10 | if ($a >$b) { 11 | echo 'ab'; 12 | } 13 | 14 | if ($a > $b) { 15 | echo 'ab'; 16 | } 17 | 18 | if ($a > $b) { 19 | echo 'ab'; 20 | } 21 | 22 | if ($a+$b) { 23 | echo 'ab'; 24 | } 25 | 26 | if ($a+ $b) { 27 | echo 'ab'; 28 | } 29 | 30 | if ($a +$b) { 31 | echo 'ab'; 32 | } 33 | 34 | if ($a + $b) { 35 | echo 'ab'; 36 | } 37 | 38 | if ($a + $b) { 39 | echo 'ab'; 40 | } 41 | 42 | if ($a|$b) { 43 | echo 'ab'; 44 | } 45 | 46 | if ($a| $b) { 47 | echo 'ab'; 48 | } 49 | 50 | if ($a |$b) { 51 | echo 'ab'; 52 | } 53 | 54 | if ($a | $b) { 55 | echo 'ab'; 56 | } 57 | 58 | if ($a | $b) { 59 | echo 'ab'; 60 | } 61 | -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/TechDivision/MagentoUnitTesting/Exception.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | class TechDivision_MagentoUnitTesting_Exception extends Exception 24 | { 25 | 26 | } -------------------------------------------------------------------------------- /src/app/code/community/TechDivision/MagentoUnitTesting/Helper/Data.php: -------------------------------------------------------------------------------- 1 | - TechDivision GmbH 20 | * @license http://opensource.org/licenses/osl-3.0.php 21 | * Open Software License (OSL 3.0) 22 | * @author Tim Wagner 23 | */ 24 | class TechDivision_MagentoUnitTesting_Helper_Data 25 | extends Mage_Core_Helper_Abstract 26 | { 27 | } -------------------------------------------------------------------------------- /src/downloader/pearlib/pecl: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # first find which PHP binary to use 4 | if test "x$PHP_PEAR_PHP_BIN" != "x"; then 5 | PHP="$PHP_PEAR_PHP_BIN" 6 | else 7 | if test "/usr/local/php4/bin/php" = '@'php_bin'@'; then 8 | PHP=php 9 | else 10 | PHP="/usr/local/php4/bin/php" 11 | fi 12 | fi 13 | 14 | # then look for the right pear include dir 15 | if test "x$PHP_PEAR_INSTALL_DIR" != "x"; then 16 | INCDIR=$PHP_PEAR_INSTALL_DIR 17 | INCARG="-d include_path=$PHP_PEAR_INSTALL_DIR" 18 | else 19 | if test "/home/moshe/dev/magento/downloader/pearlib/php" = '@'php_dir'@'; then 20 | INCDIR=`dirname $0` 21 | INCARG="" 22 | else 23 | INCDIR="/home/moshe/dev/magento/downloader/pearlib/php" 24 | INCARG="-d include_path=/home/moshe/dev/magento/downloader/pearlib/php" 25 | fi 26 | fi 27 | 28 | exec $PHP -C -n -q $INCARG -d output_buffering=1 -d variables_order=EGPCS -d safe_mode=0 -d register_argc_argv="On" $INCDIR/peclcmd.php "$@" 29 | -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/TechDivision/MagentoUnitTesting/Exception/Helper.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | class TechDivision_MagentoUnitTesting_Exception_Helper 24 | extends TechDivision_MagentoUnitTesting_Exception 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/TechDivision/MagentoUnitTesting/Exception/TestCase.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | class TechDivision_MagentoUnitTesting_Exception_TestCase 24 | extends TechDivision_MagentoUnitTesting_Exception 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /src/lib/PHPUnit/Extensions/SeleniumCommon/ExitHandler.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | */ 9 | class PHPUnit_Extensions_SeleniumCommon_ExitHandler 10 | { 11 | /** 12 | * Register handler. 13 | * If project have own shutdown hanldler user have to add function to handler 14 | * 15 | */ 16 | public static function init() 17 | { 18 | register_shutdown_function( array( 'PHPUnit_Extensions_SeleniumCommon_ExitHandler', 'handle' ) ); 19 | } 20 | 21 | /** 22 | * Manual include apendable files 23 | */ 24 | public static function handle() 25 | { 26 | $execFile = ini_get('auto_append_file'); 27 | if ($execFile!=='') { 28 | include_once ($execFile); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/TechDivision/MagentoUnitTesting/Exception/Helper/Proxy.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | class TechDivision_MagentoUnitTesting_Exception_Helper_Proxy 24 | extends TechDivision_MagentoUnitTesting_Exception_Helper 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/TechDivision/MagentoUnitTesting/Exception/Helper/Static.php: -------------------------------------------------------------------------------- 1 | 22 | */ 23 | class TechDivision_MagentoUnitTesting_Exception_Helper_Static 24 | extends TechDivision_MagentoUnitTesting_Exception_Helper 25 | { 26 | 27 | } -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Php/Exemplar/_files/phpcs/input/coding_style/functions/normal_func.php: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | true 29 | community 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/api/org/apache/jorphan/io/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | org.apache.jorphan.io (Apache JMeter API) 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | org.apache.jorphan.io 20 | 21 | 22 | 27 | 28 |
23 | Classes  24 | 25 |
26 | TextFile
29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/dev/tests/integration/framework/autoloadCore.php: -------------------------------------------------------------------------------- 1 | 21 | */ 22 | require_once BP . '/lib/Magento/Autoload/IncludePath.php'; 23 | if (class_exists('Magento\\Autoload\\IncludePath', false)) { 24 | spl_autoload_register('Magento\\Autoload\\IncludePath::load', true, true); 25 | } else { 26 | spl_autoload_register('Magento_Autoload_IncludePath::load', true, true); 27 | } 28 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/api/org/apache/jmeter/swing/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | org.apache.jmeter.swing (Apache JMeter API) 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | org.apache.jmeter.swing 20 | 21 | 22 | 27 | 28 |
23 | Classes  24 | 25 |
26 | HtmlPane
29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/downloader/pearlib/php/PEAR/Command/Auth.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Connects and authenticates to remote server 4 | li 5 | doLogin 6 | 7 | <channel name> 8 | Log in to a remote channel server. <channel name> is not supplied, 9 | the default channel is used. To use remote functions in the installer 10 | that require any kind of privileges, you need to log in first. The 11 | username and password you enter here will be stored in your per-user 12 | PEAR configuration (~/.pearrc on Unix-like systems). After logging 13 | in, your username and password will be sent along in subsequent 14 | operations on the remote server. 15 | 16 | 17 | Logs out from the remote server 18 | lo 19 | doLogout 20 | 21 | 22 | Logs out from the remote server. This command does not actually 23 | connect to the remote server, it only deletes the stored username and 24 | password from your user configuration. 25 | 26 | -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/bin/jmeterw.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | rem Run JMeter using javaw 3 | 4 | rem Licensed to the Apache Software Foundation (ASF) under one or more 5 | rem contributor license agreements. See the NOTICE file distributed with 6 | rem this work for additional information regarding copyright ownership. 7 | rem The ASF licenses this file to You under the Apache License, Version 2.0 8 | rem (the "License"); you may not use this file except in compliance with 9 | rem the License. You may obtain a copy of the License at 10 | rem 11 | rem http://www.apache.org/licenses/LICENSE-2.0 12 | rem 13 | rem Unless required by applicable law or agreed to in writing, software 14 | rem distributed under the License is distributed on an "AS IS" BASIS, 15 | rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | rem See the License for the specific language governing permissions and 17 | rem limitations under the License. 18 | 19 | set JM_START=start 20 | set JM_LAUNCH=javaw.exe 21 | 22 | rem Only works in Win2K 23 | call jmeter %* 24 | 25 | set JM_START= 26 | set JM_LAUNCH= -------------------------------------------------------------------------------- /src/dev/tests/performance/apache-jmeter-2.7/docs/api/org/apache/jmeter/services/package-frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | org.apache.jmeter.services (Apache JMeter API) 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | org.apache.jmeter.services 20 | 21 | 22 | 27 | 28 |
23 | Classes  24 | 25 |
26 | FileServer
29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/lib/Magento/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | org.apache.jorphan.test (Apache JMeter API) 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | org.apache.jorphan.test 20 | 21 | 22 | 27 | 28 |
23 | Interfaces  24 | 25 |
26 | UnitTestManager
29 | 30 | 31 | 32 | 33 | --------------------------------------------------------------------------------