Tagged Questions

3
votes
3answers
300 views

Unit Testing: coding to interfaces?

Currently my project is composed of various concrete classes. Now as I'm getting into unit testing it looks like I'm supposed to create an interface for each and every class (effectively doubling the ...
3
votes
5answers
604 views

Is This a C++ Unit Test?

I am trying to formalize my programming practices in preparation to do it professionally (I have been doing it as a hobby for 18 years). Unfortunately they didn’t really teach us useful stuff in ...
1
vote
1answer
200 views

Can I teach dynamic_cast<>() new tricks?

Is there a way in C++ to construct your class such that given a pointer to your class you can instruct dynamic_cast<>() how to cast to another class for which you are wrapping the implementation? ...