Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
171 views

Testing a class that depends on static functions of another class

I am currently working on a class that uses another class which has only static functions. Everything worked fine until I tried testing my class. Here is a simple code example of the problem: class ...
3
votes
2answers
97 views

py.test with non-python tests (specifically, with cxxtest)

I work with a team that develops MPI-based C++ numerical applications. The group uses cxxtest for constructing individual unit tests or small suites, but 1) there are some complications aggregating ...
2
votes
1answer
78 views

How can I compare two ostream objects in C++ for equality?

I overloaded the left shift operator in my class and the output works fine, so for example when I have a line which says cout << obj; I will output the fields seperated by a comma. ...
2
votes
5answers
348 views

How to unit test the sorting of a std::vector

I have never used unit testing before, so I'm giving CxxTest a go. I wrote a test to check if a function correctly sorts a std::vector. First I made sure the test failed when the vector wasn't sorted, ...
1
vote
1answer
121 views

Web-CAT CxxTest Eclipse GUI for test results not showing up

I am trying to execute test cases using CxxTest framework on Eclipse. After following instructions on this website - http://web-cat.cs.vt.edu/eclipse/cxxtest/ I am able to build the test case, but ...
1
vote
1answer
124 views

How do I check what version of java im using in c++

I have a testing script that checks what version of java the user is using and then executes some commands. But we are trying to convert all of our testing into cxxtests. I would like to know how to ...
1
vote
3answers
3k views

CXX Test Framework for C++

How effective is the CXX test framework, given that you are writing unit test cases around the code that you have written. Any bug in the code might as well get translated into a bug in the unit test ...
0
votes
2answers
108 views

Accessing a C++ function from a CXX test

I'm writing a few CXX unit tests for a class I have written. I have never written CXX tests before (also this is the only framework I can use). I am trying to call a function contained within my ...
0
votes
0answers
90 views

Has anyone used CxxTest with VxWorks 653?

Has anyone used CxxTest with VxWorks 653? If so, what was your experience? I'm using the VxWorks 653 2.3 Development Shell to attempt to build a C++ application (involving a CxxTest unit test), but ...
0
votes
2answers
261 views

Testing a qt object using cxxtest framework and valgrind

Is it possible to use cxxunit or any other unit testing framework (excluding QtTestLib) to test qt widgets? If yes, then there are two more questions : How? Since I am running unit tests using ...
0
votes
1answer
196 views

Can i make unit testing using cxxtest with visual studio 2010 professional?

Can i make unit testing using cxxtest with visual studio 2010 professional?
0
votes
1answer
140 views

Can cxxtest suite be dynamically extended at run-time?

I wish to dynamically extend my CxxTest Suite with additional test items, but am finding that all the testing scenerios must be available (hard-coded) at compile time. My scenario is that I've got a ...
0
votes
1answer
99 views

How do I make an automake rule in an .mk file that deletes a directory upon cleaning?

I would like to delete a another directory when I run make clean, but I can't figure out how to code it up in the rules. I have tried clean-local: -rm -f del.dir but that didn't work. I also ...
0
votes
1answer
226 views

When I run cxxtest I get this error that I dont underdstand?

./cxxtest/cxxtestgen.py -o tests.cpp --error-printer DrawTestSuite.h g++ -I./cxxtest/ -c tests.cpp g++ -o tests tests.o Color.o tests.o: In function `DrawTestSuite::testLinewidthOne()': ...
0
votes
3answers
203 views

Can I write custom assertions in CxxTest?

I'm just starting to use CxxTest and would like to test whether a std::vector has been sorted correctly. Here's my test so far: void testSort() { std::sort(vec.begin(), vec.end()); // This could be ...