halcheck is a Property-Based Testing library for C/C++.
This library is in early stages of development.
halcheck uses CMake and can be integrated using standard CMake methods (e.g. via add_subdirectory.)
add_subdirectory(path/to/halcheck/repository)
target_link_libraries(my-project
halcheck # Main library
halcheck::gtest) # For Google Test integrationAdditionally, halcheck can be integrated using CPM.cmake.
CPMAddPackage("gh:YellPika/halcheck@version")
target_link_libraries(my-project
halcheck # Main library
halcheck::gtest) # For Google Test integrationSee the [Introduction](@ref intro) and [Reference](@ref ref).