I'm starting a new project and my company has standardized development on NetBeans. I need to do unit testing, though, and can't find a unit testing plugin for C++. As I said, it's a new project, so I'm open to trying any C++ unit testing framework.
EDIT: I've decided on CppUnit, since I'm very familiar with JUnit and the learning curve will be flat. I'd still be interested in any tricks for compiling and running tests from NetBeans IDE so I (and more importantly, my co-workers) don't have to open a shell to run the tests.
EDIT 2: Some more details are coming out of the answers and comments I've gotten so far. It would be nice to have a red-bar, green-bar GUI plugin for C++, but I've pretty much given up on that. I know how to change the compiler and add flags in NetBeans, but it seems that what I really need are instructions on adding a custom make target that will build and run my tests.