upp11
Catch
upp11 | Catch | |
---|---|---|
- | 56 | |
8 | 18,449 | |
- | 0.8% | |
0.0 | 9.0 | |
almost 8 years ago | 13 days ago | |
C++ | C++ | |
GNU General Public License v3.0 only | gtkbook License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
upp11
We haven't tracked posts mentioning upp11 yet.
Tracking mentions began in Dec 2020.
Catch
-
Comparing C++ range libraries for filter+reverse case with non-trivial lambda
The code uses catch2 to test for correctness and performance. Catch2 is a unit testing framework for C++, but it also provides basic micro-benchmarking features. Unfortunately, it doesn't provide any way to visualise the results, so I created a script and submitted PR adding plotting capabilities to Catch.
- C++ Comparison Operator Craziness
-
How can I check the execution time of a program rendered in SFML?
https://github.com/catchorg/Catch2 (for unit testing, need to do timing yourself)
- Semi crise existentielle de développeur
-
`DestroyJavaVM()` failing on OpenJ9?
```c++ // https://github.com/catchorg/Catch2/tree/Catch1.x // https://github.com/philsquared/Catch/releases/download/v1.12.2/catch.hpp
-
How do you use the Catch testing library?
Include(FetchContent) FetchContent_Declare(Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git GIT_TAG v3.3.2 ) FetchContent_MakeAvailable(Catch2)
- Tracking the Fake GitHub Star Black Market
- The Little Things: Why you should always have benchmarks ready
-
Trying to add tests for my cmake for catch2 with ctest.
Another possible issue would be the include(Catch) in your root cmakelists.txt . To include Catch there it must be part of your module path. Otherwise you have to include the path to that catch2 cmake file. Here is that file in their repository - https://github.com/catchorg/Catch2/blob/devel/extras/Catch.cmake . I recon that CMake doesn't know about this file since you call find_package(Catch2 REQUIRED) later in your subdirectory
-
Seeking Improve Advice on my C++ Network Library
Unit test coverage by Catch2 framework.
What are some alternatives?
trompeloeil - Header only C++14 mocking framework
Google Test - GoogleTest - Google Testing and Mocking Framework
KmTest - Kernel-mode C++ unit testing framework in BDD-style
doctest - The fastest feature-rich C++11/14/17/20/23 single-header testing framework
FakeIt - C++ mocking made easy. A simple yet very expressive, headers only library for c++ mocking.
Boost.Test - The reference C++ unit testing framework (TDD, xUnit, C++03/11/14/17)
Minctest - tiny unit testing framework for ANSI C
CppUTest - CppUTest unit testing and mocking framework for C/C++
Hippomocks
Google Mock
Boost - Super-project for modularized Boost
CppUnit - C++ port of JUnit