I have a bunch of module tests written in CPPunit with some mocks created by hand. I am looking for a way to migrate them to GoogleTest as smoothly as possible. Have you tried such an operation? What was the effort needed?
|
feedback
|
|
I'm almost sure you can't somehow automate it and this operation would require rethinking and recompositioning of your tests to follow the I would say that you'd better rethink the following questions: "why do I need to port my tests", "what would be the benefit of this operation" and "do I really want to study a whole new testing framework and then rewrite all of my tests for some purpose". | |||
|
feedback
|
|
It seems that you can use google test from another framework (cppunit, in your case): http://code.google.com/p/googletest/wiki/GoogleTestAdvancedGuide#Letting_Another_Testing_Framework_Drive | |||
|
feedback
|
|
To some extent I agree with @Kotti. Automatic conversion will be non-trivial for the tests, so you'd need to consider whether the number of existing tests justify the effort. I'm a huge fan of the Googlemock framework, and if you make a significant investment in manual mocking, then porting your mocks to Googlemock could have a huge benefit to your ongoing testing costs. If this is the reason for considering the port, then remember that Googlemock can work with other test frameworks - not just Googletest. (NOTE: I have not used this feature, but have seen online reports its use) | |||
|
feedback
|