CppUnit is a macro-based unit testing framework for C++.
2
votes
1answer
26 views
Within CPPUNIT_ASSERT, Keep Getting Access Violation
I have a set of classes to which I am trying to apply unit tests, to maintain their current utility through future revisions.
My problem is that within CPPUNIT, to which I am new, where-ever I call ...
0
votes
0answers
38 views
CppUnit and include problems
I have a project that have a Container class and an iterator class. In the code, the container looks like:
#pragma once
#ifndef size_type
#define size_type unsigned int
#endif
#include "Iterator.h"
...
0
votes
0answers
29 views
Producing reference test files out of CPPunit test cases for a specification
I'm writing a reference implementation for a specification that deals with data transformation.
I have a number of test cases that check that data is getting forward and backward transformed ...
0
votes
1answer
44 views
trouble with makefile, no references
I've got two classes : EtatTrafic and EtatTraficTest.
This is my makefile :
#Makefile
CXX = g++
LDLIBS = -lcppunit
# a modifier en fonction des cas
OBJS = EtatTrafic.o EtatTraficTest.o
all : ...
1
vote
1answer
58 views
Modifying TestAssert.h (cppunit) - why the order of includes matter for macro expansion?
I have a project which has two base exception classes; both have the same name, only the methods/members differ (one has a method which returns the message, the other has only a string member which ...
7
votes
3answers
131 views
How to test static functions with cppunit
My project contains c files.
In some files I have functions defined as static.
I m using cppunit in my unit tests. and I want to tests these static functions. I know that calling function from ...
2
votes
1answer
86 views
Does cppUnit use fork() when it launch each unit test?
I'm using cppunit for the unit tests of my project.
And I m wondering if the cppunit launch each unit test in a new fork() system call because:
Using fork will allow to create a new address space ...
0
votes
1answer
26 views
'_Unwind_GetIPInfo' symbol
I m developing unit test using cppunit.
I build and installed cppunit library then I build and install my unit test binary.
And when I launch the unit test binary I get the following error:
can't ...
1
vote
1answer
30 views
makefile for cppunit
this is my makefile :
#Makefile
CC=g++
CFLAGS=-lcppunit
OBJS=Money.o MoneyTest.o
all : $(OBJS)
$(CC) $(OBJS) -o TestUnitaire
#création des objets
Money.o: Money.cpp Money.hpp
$(CC) -c ...
0
votes
0answers
49 views
'_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_i' symbol [closed]
I m developing unit test using cppunit.
I build and installed cppunit library then I build and install my unit test binary.
And when I launch the unit test binary I get the following error:
can't ...
0
votes
0answers
10 views
cppunit run single method in TestFixture class
Is there any way to run a single method in a TestFixture class instead of All Methods?
CPPUNIT_NS::TestFactoryRegistry::getRegistry("MyTest").makeTest();
test->getChildTestAt(1);
returns the ...
1
vote
1answer
111 views
Open source projects using cppUnit?
I want to know if there is some open source projects (I prefer C projects) that use the cppUnit for the unit tests.
0
votes
1answer
60 views
Running unit test with CppUnit on a dll
I have a visual studio project which has CppUnit test cases for one of our modules. This project when built creates a dll (Something like ModuleUnitTest.dll). I am not getting how do I run these ...
0
votes
0answers
57 views
cppunit validation project to check cppunit [closed]
Is there any existing project that validate (all / most of )cppunit basic features ?
Thanks in advance
brijesh
1
vote
2answers
134 views
CppUnit expect exception with Assert Throw compiles with warning C4127 [duplicate]
Currently I am writing unit tests in C++ with CppUnit. Recently I needed to check that an exception is thrown in a specific case using CppUnits macro:
CPPUNIT_ASSERT_THROW(
...
0
votes
3answers
60 views
Const char declaration causes stack overflow
In my VC++ CPPUNIT project the following code in a unit test causes a stack overflow exception:
const int n = 1000000;
const char *test[n];
First-chance exception at 0x00AD89E7 in ...
0
votes
1answer
182 views
How to build cppunit with Visual Studio 2012
i've got cppunit from http://cppunit.svn.sourceforge.net/ and it worked fine until now, when i need to rebuild it in Visual Studio 2012.
So i've opened solution from ..\branches\HB_VS2010\cppunit\ , ...
1
vote
1answer
124 views
Boundary value analysis in C++ with CppUnit
I'm trying to implement boundary tests in CppUnit. I want to check the limit value itself as well as the boundaries around this limit.
For the upper boundary I wanted to add the smallest inkrement ...
3
votes
1answer
85 views
Why does Google Mocks find this function call ambiguous?
I've run into an issue while attempting to start using Google Mocks - for some reason it can't tell the call I'm specifying in the EXPECT_CALL macro, even though the types are consistent. I want to ...
0
votes
1answer
54 views
How could one implement “categories” in a CppUnit test suite?
Closely related to this question, I would like to be able to select tests to execute in a CppUnit assembly based on command-line arguments. Think --exclude=integration,smoke,x64only or --include=unit. ...
0
votes
1answer
129 views
Getting CppUnit to read application class on netbeans 7.2
I am learning C++ and CppUnit at the same time, using netbeans 7.2.
I create the following file
#include <cstdlib>
using namespace std;
/*
*
*/
class Subtract{
public:
int minus(int ...
0
votes
1answer
124 views
segmentation fault in cppunit at cleanup time
CPPUNIT crashes after execution of my program while returning from main during the cleanup phase. TestWrapping's dtor calls TestSuite's dtor which then calls deleteContents which triggers the test ...
0
votes
1answer
107 views
cppunit SEGFAULT - with core dump
I have a CppUnit test suite that I execute and at the end of the execution the application segments.
I have been trying to understand this core dump for a while now and I can't figure out what might ...
4
votes
1answer
257 views
CppUnit Linking error with Clang on Mac OS X
I am trying to compile a test program using CppUnit. The problem is, with this sample code:
//[...]
class EntityComponentTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( ...
0
votes
2answers
141 views
Cannot execute .o file created by Netbeans
I have a project on my local computer and I want to run/debug a cppunit Test on a server (Debian). I created the .o files with Netbeans and set the permissions to executable.
drwxr-xr-x 2 myName ...
0
votes
1answer
79 views
Error using struct defined in another file in UnitTesting (cppunit)
I have a Parser.h, that defines a struct StmtParent:
...
struct StmtParent;
class Parser {
...
Then in Parser.cpp:
struct StmtParent {
int stmtNo;
int parent;
};
...
Seems all right? ...
0
votes
2answers
181 views
CppUnit creating a simple test
First whats the class I use if I want to setup a test like:
class MyClassTests
setup()
teardown()
testDoingSomething()
testDoingA()
Seems like the class to use is TestSuite?
...
0
votes
2answers
98 views
how to unit test an exception thown from a call back function
I am trying to unit test a function which returns instantly and then returns the actual result by a callback function. Can anybody help me in how to unit test this function using cppunit.
for eg .
...
2
votes
1answer
444 views
What mock frameworks work with cppunit?
I'm in the middle of implementing a unit test infrastructure for a large C++ project, and due to political reasons I'm almost sure CppUnit will be pushed as the unit testing framework.
I'm trying to ...
0
votes
1answer
153 views
Building zxing on MinGW fails with “TestFactoryRegistry.h: No such file or directory”, even though CppUnit is installed
I'm trying to compile the C++ port of zxing on Windows using MinGW, but the build fails with:
build\core\tests\src\TestRunner.cpp:21:52: fatal error: cppunit/extensions/TestFactoryRegistry.h: No such ...
3
votes
1answer
311 views
CppUnit - advantages and disadvantages with the xUnit based design?
CppUnit is designed to be similar to JUnit and other XUnit frameworks.
What are the advantages/disadvantages of this?
When should it be selected for this reason?
And should a different framework be ...
0
votes
1answer
101 views
Error while using CPPUNIT_TEST_SUITE macro
After reading through the CppUnit cookbook and a lot of googling, I haven't been able to figure out the reason for the particular error I am getting.
I have a very basic CppUnit testFixture class ->
...
2
votes
2answers
93 views
How to display hex value when cppunit assert failed
I use CPPUNIT_ASSERT_EQUAL(a, b) to check the value a and b. The a and b are unsigned char type. So, when this assertion failed it will display the expected and actual value. Because the type is ...
1
vote
1answer
877 views
Install latest cppunit in windows
I am trying to install CppUnit on Windows.
I have downloaded it from here, decompressed it, and noticed that all files have ,v in their name, and no extension.
The instructions for installation ...
0
votes
2answers
215 views
Step by step instructions for getting cppunit up and running with Netbeans 7.2 on OS X 10.8 Mountain Lion
Can someone please provide step by step instructions for getting cppunit working on OS X 10.8 Mountain Lion? This includes any downloads needed and any configuration of Netbeans.
Currently, when I ...
2
votes
1answer
57 views
How to let eclipse ignore specific sub-folder
I'm not familiar with eclipse. I have a question as this topic title. The scenario is that I want create a sub-folder "test" (for unit test) in folder src. But after the creation of folder "test", ...
3
votes
2answers
205 views
CPPUNIT_ASSERT_EQUAL on std::unique_ptr
I want to test if my application returns a nullptr unique ptr. I have tried a few things but nothing get through the compiler. I hope someone has already tried and found a way to make this work. Some ...
1
vote
1answer
140 views
CppUnit testing with existing project
I'm new to CppUnit testing and I have a basic set of questions.
So, CppUnit tests need a main function to run. However, I want this main to be separate from the main of the project I want to test. ...
2
votes
1answer
196 views
Qt can't find files in a subproject
So, I'm trying to learn CppUnit testing. Since CppUnit needs it's own main function to run tests, I figured I would move my test suite into it's own sub-project. If that whole philosophy is wrong, ...
1
vote
0answers
58 views
Advice/experience on testing MPI code with CppUnit
I've got a codebase where I have been using CppUnit for unit testing. I'm now adding some MPI code to the project and I'd like to unit test some abstractions I'm building on top of MPI. For example, ...
0
votes
1answer
78 views
Asserting iterators equality in CppUnit
I've been starting to use CppUnit library. And everything worked fine, but now, I get stuck with asserting iterators using CPPUNIT_ASSERT_EQUAL. So there is my code:
void ...
0
votes
1answer
262 views
netbeans cppunit linking error
I am trying to run some tests with cppUnit tests on NETBEANS on Mac - Lion OS10x but I get this error after i try to compile it:
/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= ...
2
votes
2answers
513 views
CppUnit and CMake: .cpp files get compiled twice
I'm currently using CMake to build my project and CppUnit to Test it. In my CMake file i create two executables. sample is the compiled source itself. And with sample_test I run the tests. If i r
...
0
votes
1answer
94 views
Why both “Start (Without) Debugging” (F5 anf Ctrl+F5) doesn't create CppUnit *.xml report file?
First of all, I want to welcome everybody on stackoverflow as this is my 1st question.
I got stuck with generating output *.xml file with CppUnit on Visual Studio 2005. When I run the code with F5 or ...
1
vote
1answer
257 views
C++ How do i run makefile output
C++ How do i run makefile output
Below is my MakeFile, I want to ask how do i run my unitTest.cpp, as because when i MakeFile with NetBean, using the MakeFile below, main.exe is actually the main.cpp ...
2
votes
1answer
89 views
Error while using cppunit
I am using cppunit for testing my project code. In my code in some places I have put some print statements for the debugging purpose like,
void TestSample()
{
//getting value from registry
...
0
votes
1answer
107 views
CPPUnit - Global variables
How can a variable that I set in first CPPUNIT_TEST be accessed in the CPPUNIT_TEST following that?
For EX.
CPPUNIT_TEST_SUITE(TestingEx);
CPPUNIT_TEST(ex1);
CPPUNIT_TEST(ex2);
...
0
votes
1answer
1k views
Untar *.tar.bz2 using 7-zip on windows command line
I have a function in a powershell script that is supposed to untar my CppUnit.tar.bz2 file. I have installed 7-zip, and in my function I have the following:
Function untar ($targetFile) {
...
0
votes
1answer
130 views
TeamCity CppUnit plugin prints extra '\n'
I have integrated TeamCity with Cppunit using their plugin.
I’m trying to get rid of the '\n' that’s being appended after each test. I tried commenting out details.append("\n"); from ...
0
votes
2answers
250 views
uic: Unexpected element name
I am trying to compile a .pro file using qmake and Qt4 to get a library from qttestrunnerlib.pro but I get this error:
~/docs/UT_Cpp_Test/main/cppDir/src/qttestrunner$ qmake qttestrunnerlib.pro
...

