├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── meeting-minutes-template.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── build-and-push-demo-pipeline.yaml │ ├── build-on-change-linux-bare.yaml │ ├── build-on-change-linux-docker.yaml │ ├── build-on-change-windows.yaml │ ├── linux-files │ ├── Core_Chk005_positive.otx │ ├── CutIn.xosc │ ├── Databases │ │ └── AB_RQ31_Straight.xodr │ ├── UC_Motorway-Exit-Entry.xodr │ ├── odr_config.xml │ ├── osc_config.xml │ └── otx_config.xml │ ├── linux-manifest │ ├── framework.json │ ├── odr.json │ ├── osc.json │ ├── otx.json │ ├── result_pooling.json │ └── text_report.json │ ├── windows-files │ ├── Core_Chk005_positive.otx │ ├── CutIn.xosc │ ├── Databases │ │ └── AB_RQ31_Straight.xodr │ ├── UC_Motorway-Exit-Entry.xodr │ ├── odr_config.xml │ ├── osc_config.xml │ └── otx_config.xml │ └── windows-manifest │ ├── framework.json │ ├── odr.json │ ├── osc.json │ ├── otx.json │ ├── result_pooling.json │ └── text_report.json ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── CMakePresets.json ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── README.md ├── demo_pipeline ├── configuration_generator.py ├── manifests │ ├── framework_manifest.json │ ├── framework_report_manifest.json │ ├── odr_manifest.json │ ├── osc_manifest.json │ ├── otx_manifest.json │ ├── result_pooling.json │ └── text_report.json ├── requirements.txt ├── run_pipeline.sh └── templates │ ├── otx_template.xml │ ├── xodr_template.xml │ └── xosc_template.xml ├── doc ├── CMakeLists.txt ├── changelog.txt ├── manual │ ├── architecture.md │ ├── checker_library.md │ ├── cpp_base_library.md │ ├── demo_pipeline.md │ ├── esmini_viewer_plugin.md │ ├── file_formats.md │ ├── images │ │ ├── esmini_at_00.png │ │ ├── esmini_at_location.png │ │ ├── esmini_viewer.png │ │ ├── example_esmini_map.png │ │ ├── qc_framework_logo.drawio.png │ │ ├── reporting_gui.png │ │ └── workflow.drawio.png │ ├── manifest_file.md │ ├── python_qc_framework.md │ ├── readme.md │ ├── rule_uid_schema.md │ ├── using_the_cpp_base_library.md │ ├── using_the_framework.md │ ├── viewer_interface.md │ └── writing_user_defined_modules.md └── schema │ ├── CMakeLists.txt │ ├── config_format.xsd │ └── xqar_result_format.xsd ├── docker ├── Dockerfile.linux └── test_runtime.sh ├── examples ├── CMakeLists.txt ├── checker_bundle_example │ ├── CMakeLists.txt │ └── src │ │ ├── main.cpp │ │ ├── main.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── esmini_viewer │ ├── CMakeLists.txt │ ├── esmini_viewer.cpp │ └── xml_util.h └── viewer_example │ ├── CMakeLists.txt │ ├── resources │ ├── Result.xqar │ └── three_connected_roads_with_steps.xodr │ └── viewer_example.cpp ├── include ├── common │ ├── config_format │ │ ├── c_configuration.h │ │ ├── c_configuration_checker.h │ │ ├── c_configuration_checker_bundle.h │ │ └── c_configuration_report_module.h │ ├── qc4openx_filesystem.h │ ├── result_format │ │ ├── c_checker.h │ │ ├── c_checker_bundle.h │ │ ├── c_domain_specific_info.h │ │ ├── c_extended_information.h │ │ ├── c_file_location.h │ │ ├── c_inertial_location.h │ │ ├── c_issue.h │ │ ├── c_locations_container.h │ │ ├── c_message_location.h │ │ ├── c_metadata.h │ │ ├── c_parameter_container.h │ │ ├── c_result_container.h │ │ ├── c_rule.h │ │ ├── c_time_location.h │ │ ├── c_xml_location.h │ │ └── i_result.h │ ├── util.h │ └── xml │ │ ├── c_x_path_evaluator.h │ │ └── util_xerces.h └── viewer │ └── i_connector.h ├── licenses ├── 3rd_party_terms_and_licenses │ ├── Black_LICENSE │ ├── GoogleTest_LICENSE │ ├── Pydantic_LICENSE │ ├── Pytest_LICENSE │ ├── Qt_LICENSE │ └── Xerces-C++_LICENSE └── readme.md ├── manifest_examples ├── linux │ ├── framework.json │ ├── qc_opendrive.json │ ├── qc_openscenarioxml.json │ ├── qc_otx.json │ ├── report_gui.json │ ├── result_pooling.json │ └── text_report.json └── windows │ ├── framework.json │ ├── qc_opendrive.json │ ├── qc_openscenarioxml.json │ ├── qc_otx.json │ ├── report_gui.json │ ├── result_pooling.json │ └── text_report.json ├── qc_framework ├── README.md ├── poetry.lock ├── pyproject.toml ├── qc_framework │ ├── __init__.py │ ├── __main__.py │ ├── report │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── report_application.py │ │ │ └── report_formatter.py │ │ ├── github_ci │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── github_ci_formatter.py │ │ ├── json │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── json_formatter.py │ │ └── text │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── text_formatter.py │ └── runtime │ │ ├── __init__.py │ │ ├── models.py │ │ └── runtime.py └── tests │ ├── __init__.py │ ├── test_data │ ├── 3step_config.xml │ ├── linux │ │ ├── demo_checker_bundle_manifest.json │ │ ├── framework_manifest.json │ │ ├── result_pooling_manifest.json │ │ └── text_report_manifest.json │ └── windows │ │ ├── demo_checker_bundle_manifest.json │ │ ├── framework_manifest.json │ │ ├── result_pooling_manifest.json │ │ └── text_report_manifest.json │ └── test_runtime.py ├── scripts └── cmake │ ├── qc4openx-config.cmake │ └── qt_macros.cmake ├── src ├── CMakeLists.txt ├── common │ ├── CMakeLists.txt │ ├── softwareVersion.h.in │ └── src │ │ ├── config_format │ │ ├── c_configuration.cpp │ │ ├── c_configuration_checker.cpp │ │ ├── c_configuration_checker_bundle.cpp │ │ └── c_configuration_report_module.cpp │ │ ├── result_format │ │ ├── c_checker.cpp │ │ ├── c_checker_bundle.cpp │ │ ├── c_domain_specific_info.cpp │ │ ├── c_extended_information.cpp │ │ ├── c_file_location.cpp │ │ ├── c_inertial_location.cpp │ │ ├── c_issue.cpp │ │ ├── c_locations_container.cpp │ │ ├── c_message_location.cpp │ │ ├── c_metadata.cpp │ │ ├── c_parameter_container.cpp │ │ ├── c_result_container.cpp │ │ ├── c_rule.cpp │ │ ├── c_time_location.cpp │ │ └── c_xml_location.cpp │ │ ├── util.cpp │ │ └── xml │ │ └── c_x_path_evaluator.cpp ├── report_modules │ ├── CMakeLists.txt │ ├── report_module_github_ci │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── report_format_github_ci.cpp │ │ │ ├── report_format_github_ci.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── report_module_gui │ │ ├── CMakeLists.txt │ │ ├── res │ │ │ ├── POC_ReportModuleGUI.qrc │ │ │ └── icons │ │ │ │ ├── green.png │ │ │ │ ├── issue.png │ │ │ │ ├── marked.png │ │ │ │ ├── marked_visible.png │ │ │ │ ├── no_params.png │ │ │ │ ├── params.png │ │ │ │ ├── red.png │ │ │ │ ├── visible.png │ │ │ │ └── yellow.png │ │ └── src │ │ │ ├── qrc │ │ │ └── poc__report_module_gui__qrc.cpp │ │ │ ├── report_format_ui.cpp │ │ │ ├── report_format_ui.h │ │ │ └── ui │ │ │ ├── c_checker_widget.cpp │ │ │ ├── c_checker_widget.h │ │ │ ├── c_line_highlighter.cpp │ │ │ ├── c_line_highlighter.h │ │ │ ├── c_report_module_window.cpp │ │ │ └── c_report_module_window.h │ └── report_module_text │ │ ├── CMakeLists.txt │ │ └── src │ │ ├── report_format_text.cpp │ │ ├── report_format_text.h │ │ ├── stdafx.cpp │ │ └── stdafx.h └── result_pooling │ ├── CMakeLists.txt │ └── src │ ├── result_pooling.cpp │ ├── result_pooling.h │ ├── stdafx.cpp │ └── stdafx.h ├── test ├── CMakeLists.txt ├── function │ ├── CMakeLists.txt │ ├── _common │ │ ├── helper.cpp │ │ ├── helper.h │ │ ├── qc4openx_errors.h │ │ └── qc4openx_filesystem.h │ ├── examples │ │ ├── CMakeLists.txt │ │ └── example_checker_bundle │ │ │ ├── files │ │ │ ├── DemoCheckerBundle_config.xml │ │ │ ├── result_file_ok.xqar │ │ │ └── result_file_wrong_status.xqar │ │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── example_checker_bundle_tester.cpp │ ├── report_modules │ │ ├── CMakeLists.txt │ │ ├── report_module_gui │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── report_module_gui_tester.cpp │ │ └── report_module_text │ │ │ ├── files │ │ │ ├── Result.xqar │ │ │ └── TextReport_config.xml │ │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── report_module_text_tester.cpp │ ├── result_format │ │ ├── files │ │ │ └── result_domain_info.xqar │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── result_format_tester.cpp │ └── result_pooling │ │ ├── files │ │ ├── DemoCheckerBundle.xqar │ │ ├── DemoCheckerBundle2.xqar │ │ ├── EmptyResult.xqar │ │ ├── RoadVerifier.xqar │ │ ├── ScenarioChecker.xqar │ │ ├── XodrSchemaChecker.xqar │ │ ├── XodrStatisticChecker.xqar │ │ ├── XoscSchemaChecker.xqar │ │ ├── two_bundles_config.xml │ │ └── two_bundles_result.xqar │ │ └── src │ │ ├── CMakeLists.txt │ │ └── result_pooling_tester.cpp └── stimuli │ ├── CMakeLists.txt │ ├── xodr_examples │ ├── ramp.xodr │ └── three_connected_roads_with_steps.xodr │ └── xosc_examples │ └── test_ramp.xosc ├── vcpkg-configuration.json ├── vcpkg.json └── version /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Microsoft 2 | Language: Cpp 3 | InsertNewlineAtEOF: true 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meeting-minutes-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/ISSUE_TEMPLATE/meeting-minutes-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-push-demo-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/build-and-push-demo-pipeline.yaml -------------------------------------------------------------------------------- /.github/workflows/build-on-change-linux-bare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/build-on-change-linux-bare.yaml -------------------------------------------------------------------------------- /.github/workflows/build-on-change-linux-docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/build-on-change-linux-docker.yaml -------------------------------------------------------------------------------- /.github/workflows/build-on-change-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/build-on-change-windows.yaml -------------------------------------------------------------------------------- /.github/workflows/linux-files/Core_Chk005_positive.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/Core_Chk005_positive.otx -------------------------------------------------------------------------------- /.github/workflows/linux-files/CutIn.xosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/CutIn.xosc -------------------------------------------------------------------------------- /.github/workflows/linux-files/Databases/AB_RQ31_Straight.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/Databases/AB_RQ31_Straight.xodr -------------------------------------------------------------------------------- /.github/workflows/linux-files/UC_Motorway-Exit-Entry.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/UC_Motorway-Exit-Entry.xodr -------------------------------------------------------------------------------- /.github/workflows/linux-files/odr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/odr_config.xml -------------------------------------------------------------------------------- /.github/workflows/linux-files/osc_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/osc_config.xml -------------------------------------------------------------------------------- /.github/workflows/linux-files/otx_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-files/otx_config.xml -------------------------------------------------------------------------------- /.github/workflows/linux-manifest/framework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-manifest/framework.json -------------------------------------------------------------------------------- /.github/workflows/linux-manifest/odr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-manifest/odr.json -------------------------------------------------------------------------------- /.github/workflows/linux-manifest/osc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-manifest/osc.json -------------------------------------------------------------------------------- /.github/workflows/linux-manifest/otx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-manifest/otx.json -------------------------------------------------------------------------------- /.github/workflows/linux-manifest/result_pooling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-manifest/result_pooling.json -------------------------------------------------------------------------------- /.github/workflows/linux-manifest/text_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/linux-manifest/text_report.json -------------------------------------------------------------------------------- /.github/workflows/windows-files/Core_Chk005_positive.otx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/Core_Chk005_positive.otx -------------------------------------------------------------------------------- /.github/workflows/windows-files/CutIn.xosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/CutIn.xosc -------------------------------------------------------------------------------- /.github/workflows/windows-files/Databases/AB_RQ31_Straight.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/Databases/AB_RQ31_Straight.xodr -------------------------------------------------------------------------------- /.github/workflows/windows-files/UC_Motorway-Exit-Entry.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/UC_Motorway-Exit-Entry.xodr -------------------------------------------------------------------------------- /.github/workflows/windows-files/odr_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/odr_config.xml -------------------------------------------------------------------------------- /.github/workflows/windows-files/osc_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/osc_config.xml -------------------------------------------------------------------------------- /.github/workflows/windows-files/otx_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-files/otx_config.xml -------------------------------------------------------------------------------- /.github/workflows/windows-manifest/framework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-manifest/framework.json -------------------------------------------------------------------------------- /.github/workflows/windows-manifest/odr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-manifest/odr.json -------------------------------------------------------------------------------- /.github/workflows/windows-manifest/osc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-manifest/osc.json -------------------------------------------------------------------------------- /.github/workflows/windows-manifest/otx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-manifest/otx.json -------------------------------------------------------------------------------- /.github/workflows/windows-manifest/result_pooling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-manifest/result_pooling.json -------------------------------------------------------------------------------- /.github/workflows/windows-manifest/text_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.github/workflows/windows-manifest/text_report.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/README.md -------------------------------------------------------------------------------- /demo_pipeline/configuration_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/configuration_generator.py -------------------------------------------------------------------------------- /demo_pipeline/manifests/framework_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/framework_manifest.json -------------------------------------------------------------------------------- /demo_pipeline/manifests/framework_report_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/framework_report_manifest.json -------------------------------------------------------------------------------- /demo_pipeline/manifests/odr_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/odr_manifest.json -------------------------------------------------------------------------------- /demo_pipeline/manifests/osc_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/osc_manifest.json -------------------------------------------------------------------------------- /demo_pipeline/manifests/otx_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/otx_manifest.json -------------------------------------------------------------------------------- /demo_pipeline/manifests/result_pooling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/result_pooling.json -------------------------------------------------------------------------------- /demo_pipeline/manifests/text_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/manifests/text_report.json -------------------------------------------------------------------------------- /demo_pipeline/requirements.txt: -------------------------------------------------------------------------------- 1 | lxml==5.2.2 2 | -------------------------------------------------------------------------------- /demo_pipeline/run_pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/run_pipeline.sh -------------------------------------------------------------------------------- /demo_pipeline/templates/otx_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/templates/otx_template.xml -------------------------------------------------------------------------------- /demo_pipeline/templates/xodr_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/templates/xodr_template.xml -------------------------------------------------------------------------------- /demo_pipeline/templates/xosc_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/demo_pipeline/templates/xosc_template.xml -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/changelog.txt -------------------------------------------------------------------------------- /doc/manual/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/architecture.md -------------------------------------------------------------------------------- /doc/manual/checker_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/checker_library.md -------------------------------------------------------------------------------- /doc/manual/cpp_base_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/cpp_base_library.md -------------------------------------------------------------------------------- /doc/manual/demo_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/demo_pipeline.md -------------------------------------------------------------------------------- /doc/manual/esmini_viewer_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/esmini_viewer_plugin.md -------------------------------------------------------------------------------- /doc/manual/file_formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/file_formats.md -------------------------------------------------------------------------------- /doc/manual/images/esmini_at_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/esmini_at_00.png -------------------------------------------------------------------------------- /doc/manual/images/esmini_at_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/esmini_at_location.png -------------------------------------------------------------------------------- /doc/manual/images/esmini_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/esmini_viewer.png -------------------------------------------------------------------------------- /doc/manual/images/example_esmini_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/example_esmini_map.png -------------------------------------------------------------------------------- /doc/manual/images/qc_framework_logo.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/qc_framework_logo.drawio.png -------------------------------------------------------------------------------- /doc/manual/images/reporting_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/reporting_gui.png -------------------------------------------------------------------------------- /doc/manual/images/workflow.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/images/workflow.drawio.png -------------------------------------------------------------------------------- /doc/manual/manifest_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/manifest_file.md -------------------------------------------------------------------------------- /doc/manual/python_qc_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/python_qc_framework.md -------------------------------------------------------------------------------- /doc/manual/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/readme.md -------------------------------------------------------------------------------- /doc/manual/rule_uid_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/rule_uid_schema.md -------------------------------------------------------------------------------- /doc/manual/using_the_cpp_base_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/using_the_cpp_base_library.md -------------------------------------------------------------------------------- /doc/manual/using_the_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/using_the_framework.md -------------------------------------------------------------------------------- /doc/manual/viewer_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/viewer_interface.md -------------------------------------------------------------------------------- /doc/manual/writing_user_defined_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/manual/writing_user_defined_modules.md -------------------------------------------------------------------------------- /doc/schema/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/schema/CMakeLists.txt -------------------------------------------------------------------------------- /doc/schema/config_format.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/schema/config_format.xsd -------------------------------------------------------------------------------- /doc/schema/xqar_result_format.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/doc/schema/xqar_result_format.xsd -------------------------------------------------------------------------------- /docker/Dockerfile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/docker/Dockerfile.linux -------------------------------------------------------------------------------- /docker/test_runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/docker/test_runtime.sh -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/checker_bundle_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/checker_bundle_example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/checker_bundle_example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/checker_bundle_example/src/main.cpp -------------------------------------------------------------------------------- /examples/checker_bundle_example/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/checker_bundle_example/src/main.h -------------------------------------------------------------------------------- /examples/checker_bundle_example/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/checker_bundle_example/src/stdafx.cpp -------------------------------------------------------------------------------- /examples/checker_bundle_example/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/checker_bundle_example/src/stdafx.h -------------------------------------------------------------------------------- /examples/esmini_viewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/esmini_viewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/esmini_viewer/esmini_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/esmini_viewer/esmini_viewer.cpp -------------------------------------------------------------------------------- /examples/esmini_viewer/xml_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/esmini_viewer/xml_util.h -------------------------------------------------------------------------------- /examples/viewer_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/viewer_example/CMakeLists.txt -------------------------------------------------------------------------------- /examples/viewer_example/resources/Result.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/viewer_example/resources/Result.xqar -------------------------------------------------------------------------------- /examples/viewer_example/resources/three_connected_roads_with_steps.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/viewer_example/resources/three_connected_roads_with_steps.xodr -------------------------------------------------------------------------------- /examples/viewer_example/viewer_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/examples/viewer_example/viewer_example.cpp -------------------------------------------------------------------------------- /include/common/config_format/c_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/config_format/c_configuration.h -------------------------------------------------------------------------------- /include/common/config_format/c_configuration_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/config_format/c_configuration_checker.h -------------------------------------------------------------------------------- /include/common/config_format/c_configuration_checker_bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/config_format/c_configuration_checker_bundle.h -------------------------------------------------------------------------------- /include/common/config_format/c_configuration_report_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/config_format/c_configuration_report_module.h -------------------------------------------------------------------------------- /include/common/qc4openx_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/qc4openx_filesystem.h -------------------------------------------------------------------------------- /include/common/result_format/c_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_checker.h -------------------------------------------------------------------------------- /include/common/result_format/c_checker_bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_checker_bundle.h -------------------------------------------------------------------------------- /include/common/result_format/c_domain_specific_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_domain_specific_info.h -------------------------------------------------------------------------------- /include/common/result_format/c_extended_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_extended_information.h -------------------------------------------------------------------------------- /include/common/result_format/c_file_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_file_location.h -------------------------------------------------------------------------------- /include/common/result_format/c_inertial_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_inertial_location.h -------------------------------------------------------------------------------- /include/common/result_format/c_issue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_issue.h -------------------------------------------------------------------------------- /include/common/result_format/c_locations_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_locations_container.h -------------------------------------------------------------------------------- /include/common/result_format/c_message_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_message_location.h -------------------------------------------------------------------------------- /include/common/result_format/c_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_metadata.h -------------------------------------------------------------------------------- /include/common/result_format/c_parameter_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_parameter_container.h -------------------------------------------------------------------------------- /include/common/result_format/c_result_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_result_container.h -------------------------------------------------------------------------------- /include/common/result_format/c_rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_rule.h -------------------------------------------------------------------------------- /include/common/result_format/c_time_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_time_location.h -------------------------------------------------------------------------------- /include/common/result_format/c_xml_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/c_xml_location.h -------------------------------------------------------------------------------- /include/common/result_format/i_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/result_format/i_result.h -------------------------------------------------------------------------------- /include/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/util.h -------------------------------------------------------------------------------- /include/common/xml/c_x_path_evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/xml/c_x_path_evaluator.h -------------------------------------------------------------------------------- /include/common/xml/util_xerces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/common/xml/util_xerces.h -------------------------------------------------------------------------------- /include/viewer/i_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/include/viewer/i_connector.h -------------------------------------------------------------------------------- /licenses/3rd_party_terms_and_licenses/Black_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/3rd_party_terms_and_licenses/Black_LICENSE -------------------------------------------------------------------------------- /licenses/3rd_party_terms_and_licenses/GoogleTest_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/3rd_party_terms_and_licenses/GoogleTest_LICENSE -------------------------------------------------------------------------------- /licenses/3rd_party_terms_and_licenses/Pydantic_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/3rd_party_terms_and_licenses/Pydantic_LICENSE -------------------------------------------------------------------------------- /licenses/3rd_party_terms_and_licenses/Pytest_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/3rd_party_terms_and_licenses/Pytest_LICENSE -------------------------------------------------------------------------------- /licenses/3rd_party_terms_and_licenses/Qt_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/3rd_party_terms_and_licenses/Qt_LICENSE -------------------------------------------------------------------------------- /licenses/3rd_party_terms_and_licenses/Xerces-C++_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/3rd_party_terms_and_licenses/Xerces-C++_LICENSE -------------------------------------------------------------------------------- /licenses/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/licenses/readme.md -------------------------------------------------------------------------------- /manifest_examples/linux/framework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/framework.json -------------------------------------------------------------------------------- /manifest_examples/linux/qc_opendrive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/qc_opendrive.json -------------------------------------------------------------------------------- /manifest_examples/linux/qc_openscenarioxml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/qc_openscenarioxml.json -------------------------------------------------------------------------------- /manifest_examples/linux/qc_otx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/qc_otx.json -------------------------------------------------------------------------------- /manifest_examples/linux/report_gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/report_gui.json -------------------------------------------------------------------------------- /manifest_examples/linux/result_pooling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/result_pooling.json -------------------------------------------------------------------------------- /manifest_examples/linux/text_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/linux/text_report.json -------------------------------------------------------------------------------- /manifest_examples/windows/framework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/framework.json -------------------------------------------------------------------------------- /manifest_examples/windows/qc_opendrive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/qc_opendrive.json -------------------------------------------------------------------------------- /manifest_examples/windows/qc_openscenarioxml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/qc_openscenarioxml.json -------------------------------------------------------------------------------- /manifest_examples/windows/qc_otx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/qc_otx.json -------------------------------------------------------------------------------- /manifest_examples/windows/report_gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/report_gui.json -------------------------------------------------------------------------------- /manifest_examples/windows/result_pooling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/result_pooling.json -------------------------------------------------------------------------------- /manifest_examples/windows/text_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/manifest_examples/windows/text_report.json -------------------------------------------------------------------------------- /qc_framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/README.md -------------------------------------------------------------------------------- /qc_framework/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/poetry.lock -------------------------------------------------------------------------------- /qc_framework/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/pyproject.toml -------------------------------------------------------------------------------- /qc_framework/qc_framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/__main__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/base/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/base/report_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/base/report_application.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/base/report_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/base/report_formatter.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/github_ci/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/github_ci/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/github_ci/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/github_ci/__main__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/github_ci/github_ci_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/github_ci/github_ci_formatter.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/json/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/json/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/json/__main__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/json/json_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/json/json_formatter.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/text/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/text/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/text/__main__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/report/text/text_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/report/text/text_formatter.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/runtime/__init__.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/runtime/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/runtime/models.py -------------------------------------------------------------------------------- /qc_framework/qc_framework/runtime/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/qc_framework/runtime/runtime.py -------------------------------------------------------------------------------- /qc_framework/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/__init__.py -------------------------------------------------------------------------------- /qc_framework/tests/test_data/3step_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/3step_config.xml -------------------------------------------------------------------------------- /qc_framework/tests/test_data/linux/demo_checker_bundle_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/linux/demo_checker_bundle_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/linux/framework_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/linux/framework_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/linux/result_pooling_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/linux/result_pooling_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/linux/text_report_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/linux/text_report_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/windows/demo_checker_bundle_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/windows/demo_checker_bundle_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/windows/framework_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/windows/framework_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/windows/result_pooling_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/windows/result_pooling_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_data/windows/text_report_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_data/windows/text_report_manifest.json -------------------------------------------------------------------------------- /qc_framework/tests/test_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/qc_framework/tests/test_runtime.py -------------------------------------------------------------------------------- /scripts/cmake/qc4openx-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/scripts/cmake/qc4openx-config.cmake -------------------------------------------------------------------------------- /scripts/cmake/qt_macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/scripts/cmake/qt_macros.cmake -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/common/softwareVersion.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/softwareVersion.h.in -------------------------------------------------------------------------------- /src/common/src/config_format/c_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/config_format/c_configuration.cpp -------------------------------------------------------------------------------- /src/common/src/config_format/c_configuration_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/config_format/c_configuration_checker.cpp -------------------------------------------------------------------------------- /src/common/src/config_format/c_configuration_checker_bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/config_format/c_configuration_checker_bundle.cpp -------------------------------------------------------------------------------- /src/common/src/config_format/c_configuration_report_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/config_format/c_configuration_report_module.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_checker.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_checker_bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_checker_bundle.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_domain_specific_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_domain_specific_info.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_extended_information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_extended_information.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_file_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_file_location.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_inertial_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_inertial_location.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_issue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_issue.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_locations_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_locations_container.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_message_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_message_location.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_metadata.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_parameter_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_parameter_container.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_result_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_result_container.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_rule.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_time_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_time_location.cpp -------------------------------------------------------------------------------- /src/common/src/result_format/c_xml_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/result_format/c_xml_location.cpp -------------------------------------------------------------------------------- /src/common/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/util.cpp -------------------------------------------------------------------------------- /src/common/src/xml/c_x_path_evaluator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/common/src/xml/c_x_path_evaluator.cpp -------------------------------------------------------------------------------- /src/report_modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/CMakeLists.txt -------------------------------------------------------------------------------- /src/report_modules/report_module_github_ci/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_github_ci/CMakeLists.txt -------------------------------------------------------------------------------- /src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_github_ci/src/report_format_github_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_github_ci/src/report_format_github_ci.h -------------------------------------------------------------------------------- /src/report_modules/report_module_github_ci/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_github_ci/src/stdafx.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_github_ci/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_github_ci/src/stdafx.h -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/POC_ReportModuleGUI.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/POC_ReportModuleGUI.qrc -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/green.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/issue.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/marked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/marked.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/marked_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/marked_visible.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/no_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/no_params.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/params.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/red.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/visible.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/res/icons/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/res/icons/yellow.png -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/report_format_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/report_format_ui.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/report_format_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/report_format_ui.h -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/ui/c_checker_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/ui/c_checker_widget.h -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/ui/c_line_highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/ui/c_line_highlighter.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/ui/c_line_highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/ui/c_line_highlighter.h -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_gui/src/ui/c_report_module_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_gui/src/ui/c_report_module_window.h -------------------------------------------------------------------------------- /src/report_modules/report_module_text/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_text/CMakeLists.txt -------------------------------------------------------------------------------- /src/report_modules/report_module_text/src/report_format_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_text/src/report_format_text.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_text/src/report_format_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_text/src/report_format_text.h -------------------------------------------------------------------------------- /src/report_modules/report_module_text/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_text/src/stdafx.cpp -------------------------------------------------------------------------------- /src/report_modules/report_module_text/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/report_modules/report_module_text/src/stdafx.h -------------------------------------------------------------------------------- /src/result_pooling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/result_pooling/CMakeLists.txt -------------------------------------------------------------------------------- /src/result_pooling/src/result_pooling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/result_pooling/src/result_pooling.cpp -------------------------------------------------------------------------------- /src/result_pooling/src/result_pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/result_pooling/src/result_pooling.h -------------------------------------------------------------------------------- /src/result_pooling/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/result_pooling/src/stdafx.cpp -------------------------------------------------------------------------------- /src/result_pooling/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/src/result_pooling/src/stdafx.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/_common/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/_common/helper.cpp -------------------------------------------------------------------------------- /test/function/_common/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/_common/helper.h -------------------------------------------------------------------------------- /test/function/_common/qc4openx_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/_common/qc4openx_errors.h -------------------------------------------------------------------------------- /test/function/_common/qc4openx_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/_common/qc4openx_filesystem.h -------------------------------------------------------------------------------- /test/function/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/examples/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/examples/example_checker_bundle/files/DemoCheckerBundle_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/examples/example_checker_bundle/files/DemoCheckerBundle_config.xml -------------------------------------------------------------------------------- /test/function/examples/example_checker_bundle/files/result_file_ok.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/examples/example_checker_bundle/files/result_file_ok.xqar -------------------------------------------------------------------------------- /test/function/examples/example_checker_bundle/files/result_file_wrong_status.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/examples/example_checker_bundle/files/result_file_wrong_status.xqar -------------------------------------------------------------------------------- /test/function/examples/example_checker_bundle/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/examples/example_checker_bundle/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp -------------------------------------------------------------------------------- /test/function/report_modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/report_modules/report_module_gui/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/report_module_gui/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp -------------------------------------------------------------------------------- /test/function/report_modules/report_module_text/files/Result.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/report_module_text/files/Result.xqar -------------------------------------------------------------------------------- /test/function/report_modules/report_module_text/files/TextReport_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/report_module_text/files/TextReport_config.xml -------------------------------------------------------------------------------- /test/function/report_modules/report_module_text/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/report_module_text/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/report_modules/report_module_text/src/report_module_text_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp -------------------------------------------------------------------------------- /test/function/result_format/files/result_domain_info.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_format/files/result_domain_info.xqar -------------------------------------------------------------------------------- /test/function/result_format/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_format/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/result_format/src/result_format_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_format/src/result_format_tester.cpp -------------------------------------------------------------------------------- /test/function/result_pooling/files/DemoCheckerBundle.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/DemoCheckerBundle.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/DemoCheckerBundle2.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/DemoCheckerBundle2.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/EmptyResult.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/EmptyResult.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/RoadVerifier.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/RoadVerifier.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/ScenarioChecker.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/ScenarioChecker.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/XodrSchemaChecker.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/XodrSchemaChecker.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/XodrStatisticChecker.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/XodrStatisticChecker.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/XoscSchemaChecker.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/XoscSchemaChecker.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/files/two_bundles_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/two_bundles_config.xml -------------------------------------------------------------------------------- /test/function/result_pooling/files/two_bundles_result.xqar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/files/two_bundles_result.xqar -------------------------------------------------------------------------------- /test/function/result_pooling/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/src/CMakeLists.txt -------------------------------------------------------------------------------- /test/function/result_pooling/src/result_pooling_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/function/result_pooling/src/result_pooling_tester.cpp -------------------------------------------------------------------------------- /test/stimuli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/stimuli/CMakeLists.txt -------------------------------------------------------------------------------- /test/stimuli/xodr_examples/ramp.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/stimuli/xodr_examples/ramp.xodr -------------------------------------------------------------------------------- /test/stimuli/xodr_examples/three_connected_roads_with_steps.xodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/stimuli/xodr_examples/three_connected_roads_with_steps.xodr -------------------------------------------------------------------------------- /test/stimuli/xosc_examples/test_ramp.xosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/test/stimuli/xosc_examples/test_ramp.xosc -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asam-ev/qc-framework/HEAD/vcpkg.json -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 1.0.0 --------------------------------------------------------------------------------