Click here to Skip to main content
15,886,795 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All



Is It possible to unit test, constructor in c#, if yes how if not why Plz response .

Thanks
Posted

 
Share this answer
 
Comments
A. K. Das 26-Jun-13 9:38am    
Thanks for Quick Response,,,

In case of Private Constructor is it Possible.......
bbirajdar 26-Jun-13 9:50am    
Nice question... Basically unit testing is about providing the input (to a class or method or anything) and verifying if it returns the expected result. Since the constructor in your question is 'private' , it cannot be called from outside the class. So no need to test it as per the principles of unit testing. Still if you want to unit test it, then call it inside a public method in the class and unit test this public method

Edit: private constructors are used only in static classes
A. K. Das 26-Jun-13 9:53am    
Thanks a lot , this is nice post clear my doubt...


Thank you very much..
Yes, you do this by instantiating the object and then asserting the fields of the object are initialized properly. You can also assert that no exception was thrown during the constructor. You can check private fields through reflection if you need to.

In your case it depends on what you want to check in the unit test...
 
Share this answer
 
Comments
A. K. Das 26-Jun-13 9:34am    
Thanks for Response

In case of private Constructor is it possible?

Thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900