[SalesForce] Apex class not visible in “Overall Code Coverage” section of developer console

I have a wrapper class which is not listed in "Overall Code Coverage" section of Developer Console. The wrapper class is active and is currently in use in other classes. The class was not generated through WSDLtoApex/JSOntoApex tools and was created manually. I need to check code coverage for this class.

Also, when I execute tests for classes which use my Wrapper class, the code coverage in None.

Can there be any reason for this class not showing in "Overall Code Coverage" section ?

Best Answer

If your Wrapper class only contains variable declaration and not any apex methods, then developer console will not show your class under Overall Code Coverage section. And such classes without methods doesn't require code coverage.