Skip to content

YellPika/halcheck

Repository files navigation

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](@ref intro) and [Reference](@ref ref).

About

Resources

Stars

Watchers

Forks

Releases

No releases published