1

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

G-71
  • 3,626
  • 12
  • 45
  • 69

1 Answers1

2

Of course! I've done that.

Just create a vcproj template where the UnitTest.h file has a custom build step which run the test generation code (cxxtestgen.py) which will generate UnitTest.cpp.
Now you can create new projects from that template and it will work like a charm.

Uri Cohen
  • 3,488
  • 1
  • 29
  • 46