python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Catch2 Framework Error: unknown type name 'DNA'clang-tidy(clang-diagnostic-error)
I'm using catch2 framework for unit testing. Below is the command I use for compiling the test file.
bin/tests: ./tests/tests.cc ./src/dna_strand.cc ./includes/dna_strand.hpp $(CXX) $(CXXFLAGS) ./test...
meseee
Votes: 0
Answers: 1
How to properly setup Catch2 tests in a Makefile?
I'm trying to setup tests with Catch2 and setup a testing rule in a Makefile, it's a pre-requisite, I can't use CMake. I'm not sure how to go about that.
For example, I have something along those line...
Nathan Furnal
Votes: 0
Answers: 0
Why do some Conan packages delete CMake Package information
I'm relatively new to Conan. I'm trying to use packages provided by conan in a very natural cmake way...i.e. I don't want anything conan specific in the consuming library's CMakeLists.txt. I just wan...
schrödinbug
Votes: 0
Answers: 1
Does SECTION run at the same time in Unit testing C++(catch2)?
I am new to C++ and I am learning Unit testing using catch2. I am writing a testcase like this
TEST_CASE("Sandwich::AddTopping test", "[AddTopping]") {
// your tests for Sandwich...
Tim Chen
Votes: 0
Answers: 0