Well how complex of classes are we talking about? If it is just a simple class holding data and has some simple accessor methods, you can just do some cout's. If it is a complex class that has dynamic memory allocation or big algorithms going on, you could look in to boost::unit_test (if you have boost installed). The boost::unit_test library will do cool stuff like automatic memory leak detection(if your IDE supports it, such as visual studio).
The key is to test a variety of conditions. Ideally, you should test the two extremes (maximum scenario and minimum scenario), a common case, and some cases that are uncommon or could cause a crash. For example, if you were testing the resize() function of a custom container you made, try calling with it 0 (the min), something like 1073741823 (probably the max), a common case like 52, and a not so common case like -12 or 39.4.