├── .clang-tidy ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── sonarlint.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── cmake ├── InstallRules.cmake ├── OptionVariables.cmake ├── PreventInSourceBuilds.cmake ├── ProjectIsTopLevel.cmake └── in │ ├── libassert-config-cmake.in │ └── version-hpp.in ├── include └── libassert │ ├── assert-catch2-macros.hpp │ ├── assert-catch2.hpp │ ├── assert-gtest-macros.hpp │ ├── assert-gtest.hpp │ ├── assert-macros.hpp │ ├── assert.hpp │ ├── expression-decomposition.hpp │ ├── platform.hpp │ ├── stringification.hpp │ └── utilities.hpp ├── lint.sh ├── screenshots ├── assert_val_opt.png ├── breakpoint.png ├── catch2.png ├── custom_object_printing.png ├── diff.png ├── fopen.png ├── gtest.png ├── literal_formatting.png ├── map_contains.png ├── no_redundancy.png ├── object_printing.png ├── recursion_fold.png ├── safe_comparison.png ├── vec_size.png └── wubble_trace.png ├── sonar-project.properties ├── src ├── analysis.cpp ├── analysis.hpp ├── assert.cpp ├── common.hpp ├── libassert.cppm ├── microfmt.hpp ├── paths.cpp ├── paths.hpp ├── platform.cpp ├── platform.hpp ├── printing.cpp ├── printing.hpp ├── stringification.cpp ├── tokenizer.cpp ├── tokenizer.hpp ├── utils.cpp └── utils.hpp └── tests ├── CMakeLists.txt ├── add_subdirectory-integration ├── CMakeLists.txt └── main.cpp ├── binaries ├── basic_demo.cpp ├── basic_test.cpp ├── catch2-demo.cpp ├── gtest-demo.cpp └── tokens_and_highlighting.cpp ├── ci-wrapper.py ├── demo ├── bar.cpp ├── baz │ └── demo.cpp ├── demo.cpp └── foo.cpp ├── fetchcontent-integration ├── CMakeLists.txt └── main.cpp ├── findpackage-integration ├── CMakeLists.txt └── main.cpp ├── integration ├── a.cpp ├── expected │ ├── clang.macos.txt │ ├── clang.txt │ ├── clang.windows.txt │ ├── gnu.macos.txt │ ├── gnu.txt │ ├── gnu.windows.txt │ └── msvc.txt ├── integration.cpp └── x │ └── a.cpp ├── pyutils ├── __init__.py └── utils.py ├── run-tests.py └── unit ├── assertion_tests.cpp ├── catch2-test.cpp ├── constexpr_contexts.cpp ├── disambiguation.cpp ├── fmt-test.cpp ├── lexer.cpp ├── literals.cpp ├── std_format20.cpp ├── std_format23.cpp ├── stringify.cpp ├── test_files └── test_program._cpp ├── test_public_utilities.cpp ├── test_type_prettier.cpp └── type_handling.cpp /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/sonarlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/.github/workflows/sonarlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/InstallRules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/cmake/InstallRules.cmake -------------------------------------------------------------------------------- /cmake/OptionVariables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/cmake/OptionVariables.cmake -------------------------------------------------------------------------------- /cmake/PreventInSourceBuilds.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/cmake/PreventInSourceBuilds.cmake -------------------------------------------------------------------------------- /cmake/ProjectIsTopLevel.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/cmake/ProjectIsTopLevel.cmake -------------------------------------------------------------------------------- /cmake/in/libassert-config-cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/cmake/in/libassert-config-cmake.in -------------------------------------------------------------------------------- /cmake/in/version-hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/cmake/in/version-hpp.in -------------------------------------------------------------------------------- /include/libassert/assert-catch2-macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/assert-catch2-macros.hpp -------------------------------------------------------------------------------- /include/libassert/assert-catch2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/assert-catch2.hpp -------------------------------------------------------------------------------- /include/libassert/assert-gtest-macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/assert-gtest-macros.hpp -------------------------------------------------------------------------------- /include/libassert/assert-gtest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/assert-gtest.hpp -------------------------------------------------------------------------------- /include/libassert/assert-macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/assert-macros.hpp -------------------------------------------------------------------------------- /include/libassert/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/assert.hpp -------------------------------------------------------------------------------- /include/libassert/expression-decomposition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/expression-decomposition.hpp -------------------------------------------------------------------------------- /include/libassert/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/platform.hpp -------------------------------------------------------------------------------- /include/libassert/stringification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/stringification.hpp -------------------------------------------------------------------------------- /include/libassert/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/include/libassert/utilities.hpp -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/lint.sh -------------------------------------------------------------------------------- /screenshots/assert_val_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/assert_val_opt.png -------------------------------------------------------------------------------- /screenshots/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/breakpoint.png -------------------------------------------------------------------------------- /screenshots/catch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/catch2.png -------------------------------------------------------------------------------- /screenshots/custom_object_printing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/custom_object_printing.png -------------------------------------------------------------------------------- /screenshots/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/diff.png -------------------------------------------------------------------------------- /screenshots/fopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/fopen.png -------------------------------------------------------------------------------- /screenshots/gtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/gtest.png -------------------------------------------------------------------------------- /screenshots/literal_formatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/literal_formatting.png -------------------------------------------------------------------------------- /screenshots/map_contains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/map_contains.png -------------------------------------------------------------------------------- /screenshots/no_redundancy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/no_redundancy.png -------------------------------------------------------------------------------- /screenshots/object_printing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/object_printing.png -------------------------------------------------------------------------------- /screenshots/recursion_fold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/recursion_fold.png -------------------------------------------------------------------------------- /screenshots/safe_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/safe_comparison.png -------------------------------------------------------------------------------- /screenshots/vec_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/vec_size.png -------------------------------------------------------------------------------- /screenshots/wubble_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/screenshots/wubble_trace.png -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/analysis.cpp -------------------------------------------------------------------------------- /src/analysis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/analysis.hpp -------------------------------------------------------------------------------- /src/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/assert.cpp -------------------------------------------------------------------------------- /src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/common.hpp -------------------------------------------------------------------------------- /src/libassert.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/libassert.cppm -------------------------------------------------------------------------------- /src/microfmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/microfmt.hpp -------------------------------------------------------------------------------- /src/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/paths.cpp -------------------------------------------------------------------------------- /src/paths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/paths.hpp -------------------------------------------------------------------------------- /src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/platform.cpp -------------------------------------------------------------------------------- /src/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/platform.hpp -------------------------------------------------------------------------------- /src/printing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/printing.cpp -------------------------------------------------------------------------------- /src/printing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/printing.hpp -------------------------------------------------------------------------------- /src/stringification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/stringification.cpp -------------------------------------------------------------------------------- /src/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/tokenizer.cpp -------------------------------------------------------------------------------- /src/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/tokenizer.hpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/src/utils.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/add_subdirectory-integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/add_subdirectory-integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/add_subdirectory-integration/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/add_subdirectory-integration/main.cpp -------------------------------------------------------------------------------- /tests/binaries/basic_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/binaries/basic_demo.cpp -------------------------------------------------------------------------------- /tests/binaries/basic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/binaries/basic_test.cpp -------------------------------------------------------------------------------- /tests/binaries/catch2-demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/binaries/catch2-demo.cpp -------------------------------------------------------------------------------- /tests/binaries/gtest-demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/binaries/gtest-demo.cpp -------------------------------------------------------------------------------- /tests/binaries/tokens_and_highlighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/binaries/tokens_and_highlighting.cpp -------------------------------------------------------------------------------- /tests/ci-wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/ci-wrapper.py -------------------------------------------------------------------------------- /tests/demo/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/demo/bar.cpp -------------------------------------------------------------------------------- /tests/demo/baz/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/demo/baz/demo.cpp -------------------------------------------------------------------------------- /tests/demo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/demo/demo.cpp -------------------------------------------------------------------------------- /tests/demo/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/demo/foo.cpp -------------------------------------------------------------------------------- /tests/fetchcontent-integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/fetchcontent-integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fetchcontent-integration/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/fetchcontent-integration/main.cpp -------------------------------------------------------------------------------- /tests/findpackage-integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/findpackage-integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/findpackage-integration/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/findpackage-integration/main.cpp -------------------------------------------------------------------------------- /tests/integration/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/a.cpp -------------------------------------------------------------------------------- /tests/integration/expected/clang.macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/clang.macos.txt -------------------------------------------------------------------------------- /tests/integration/expected/clang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/clang.txt -------------------------------------------------------------------------------- /tests/integration/expected/clang.windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/clang.windows.txt -------------------------------------------------------------------------------- /tests/integration/expected/gnu.macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/gnu.macos.txt -------------------------------------------------------------------------------- /tests/integration/expected/gnu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/gnu.txt -------------------------------------------------------------------------------- /tests/integration/expected/gnu.windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/gnu.windows.txt -------------------------------------------------------------------------------- /tests/integration/expected/msvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/expected/msvc.txt -------------------------------------------------------------------------------- /tests/integration/integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/integration.cpp -------------------------------------------------------------------------------- /tests/integration/x/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/integration/x/a.cpp -------------------------------------------------------------------------------- /tests/pyutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pyutils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/pyutils/utils.py -------------------------------------------------------------------------------- /tests/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/run-tests.py -------------------------------------------------------------------------------- /tests/unit/assertion_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/assertion_tests.cpp -------------------------------------------------------------------------------- /tests/unit/catch2-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/catch2-test.cpp -------------------------------------------------------------------------------- /tests/unit/constexpr_contexts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/constexpr_contexts.cpp -------------------------------------------------------------------------------- /tests/unit/disambiguation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/disambiguation.cpp -------------------------------------------------------------------------------- /tests/unit/fmt-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/fmt-test.cpp -------------------------------------------------------------------------------- /tests/unit/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/lexer.cpp -------------------------------------------------------------------------------- /tests/unit/literals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/literals.cpp -------------------------------------------------------------------------------- /tests/unit/std_format20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/std_format20.cpp -------------------------------------------------------------------------------- /tests/unit/std_format23.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/std_format23.cpp -------------------------------------------------------------------------------- /tests/unit/stringify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/stringify.cpp -------------------------------------------------------------------------------- /tests/unit/test_files/test_program._cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/test_files/test_program._cpp -------------------------------------------------------------------------------- /tests/unit/test_public_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/test_public_utilities.cpp -------------------------------------------------------------------------------- /tests/unit/test_type_prettier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/test_type_prettier.cpp -------------------------------------------------------------------------------- /tests/unit/type_handling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremy-rifkin/libassert/HEAD/tests/unit/type_handling.cpp --------------------------------------------------------------------------------