Hello,

I have an abstract class and I need to do unit Testing on it... The problem is I can't create object of that class to test it...like constructor and some methods.

For the purpose of the unit testing do I need to make it not Abstract and when I'm done with my testing it goes back to an abstract Class?

Thanks!