C++ Testing framework integrated with Eclipse
- by Mike
I'm writing a C++ unit testing framework and I would like it if it could be integrated with Eclipse CDT. In other testing suites that work with Eclipse, JUnit for example, the user is provided a graphical list of all test cases and their results. Something like this would be the ideal.
I'm just getting into this, so I need some advice on getting started. There are two approaches I see
Use an existing Eclipse testing plugin (such as JUnit) and make the framework return output in the same format as the plugin's input.
Write a plugin from scratch that can work with my framework (seems like it would take a lot of time)
Thoughts appreciated