├── .gitattributes ├── .gitignore ├── .travis.yml ├── CMake ├── FindGcov.cmake ├── FindLcov.cmake ├── Findcodecov.cmake └── llvm-cov-wrapper ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── Roadmap.md ├── appveyor.yml ├── codecov.yml ├── docs └── release-notes.md ├── include ├── clara.hpp └── clara_textflow.hpp ├── misc ├── CMakeLists.txt ├── appveyorBuildConfigurationScript.bat ├── appveyorMergeCoverageScript.py ├── appveyorTestRunScript.bat ├── coverage-helper.cpp └── installOpenCppCoverage.ps1 ├── scripts ├── embed.py ├── embedTextFlow.py ├── release.py └── stitch.py ├── single_include └── clara.hpp ├── src ├── ClaraTests.cpp └── main.cpp └── third_party ├── TextFlow.hpp └── catch.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMake/FindGcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/CMake/FindGcov.cmake -------------------------------------------------------------------------------- /CMake/FindLcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/CMake/FindLcov.cmake -------------------------------------------------------------------------------- /CMake/Findcodecov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/CMake/Findcodecov.cmake -------------------------------------------------------------------------------- /CMake/llvm-cov-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/CMake/llvm-cov-wrapper -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/README.md -------------------------------------------------------------------------------- /Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/Roadmap.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/docs/release-notes.md -------------------------------------------------------------------------------- /include/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/include/clara.hpp -------------------------------------------------------------------------------- /include/clara_textflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/include/clara_textflow.hpp -------------------------------------------------------------------------------- /misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/misc/CMakeLists.txt -------------------------------------------------------------------------------- /misc/appveyorBuildConfigurationScript.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/misc/appveyorBuildConfigurationScript.bat -------------------------------------------------------------------------------- /misc/appveyorMergeCoverageScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/misc/appveyorMergeCoverageScript.py -------------------------------------------------------------------------------- /misc/appveyorTestRunScript.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/misc/appveyorTestRunScript.bat -------------------------------------------------------------------------------- /misc/coverage-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/misc/coverage-helper.cpp -------------------------------------------------------------------------------- /misc/installOpenCppCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/misc/installOpenCppCoverage.ps1 -------------------------------------------------------------------------------- /scripts/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/scripts/embed.py -------------------------------------------------------------------------------- /scripts/embedTextFlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/scripts/embedTextFlow.py -------------------------------------------------------------------------------- /scripts/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/scripts/release.py -------------------------------------------------------------------------------- /scripts/stitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/scripts/stitch.py -------------------------------------------------------------------------------- /single_include/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/single_include/clara.hpp -------------------------------------------------------------------------------- /src/ClaraTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/src/ClaraTests.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /third_party/TextFlow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/third_party/TextFlow.hpp -------------------------------------------------------------------------------- /third_party/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchorg/Clara/HEAD/third_party/catch.hpp --------------------------------------------------------------------------------