halcheck 1.0
Loading...
Searching...
No Matches
A Property-Based Testing Library for C/C++

halcheck is a Property-Based Testing library for C/C++.

Disclaimer

This library is in early stages of development.

Installation

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 integration

Additionally, 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 integration

Documentation

See the Introduction and Reference.