Minimal unit testing framework for C
الميزات الرئيسية لـ siu/minunit هي: أنظمة البناء, Testing and Benchmarking, Testing and Debugging, أطر عمل الاختبار.
تشمل البدائل مفتوحة المصدر لـ siu/minunit: google/googletest — This project is a comprehensive C++ unit testing framework designed to verify code logic and identify regressions… onqtam/doctest — doctest is a unit testing framework and assertion library for C++ delivered as a single-header library. It provides a… dascandy/hippomocks — Hippomocks. eranpeer/fakeit — C++ mocking made easy. A simple yet very expressive, headers only library for c++ mocking. catchorg/catch2 — Catch2 is a comprehensive framework for C++ software validation, providing an environment for unit testing,… cobaltfusion/debugviewpp — DebugView++, collects, views, filters your application logs, and highlights information that is important to you!
C++ mocking made easy. A simple yet very expressive, headers only library for c++ mocking.
Catch2 is a comprehensive framework for C++ software validation, providing an environment for unit testing, integration verification, and performance analysis. It enables developers to define and execute automated test suites and micro-benchmarks directly within their applications. The framework is distinguished by its header-only distribution, which allows for integration into existing build systems without requiring complex external dependencies. It utilizes a hierarchical section-based execution model that supports behavior-driven testing, allowing for shared setup and teardown logic acros
This project is a comprehensive C++ unit testing framework designed to verify code logic and identify regressions through a suite of assertion macros, test fixtures, and execution runners. It automates the discovery and registration of test cases during static initialization, allowing developers to define isolated test environments that ensure repeatable and predictable conditions for every execution. The framework distinguishes itself through a sophisticated mock object library that enables the simulation of components and the enforcement of strict interaction requirements. By intercepting v