You need to sign in to do that
Don't have an account?

APEX extended controller
I have a controller extension that I built that's used in a VF page. My neophyte question is: do I have to test that APEX class (not just compile) before the VF page can see the class?
Thanks,
Evan
Your VF page can see it without that too.
Hope this helps !!
I think you are worried about the test class. Well Test class is an important aspect of writing correct code which actully test the functionality by attempting to execute your code with dummy input data.
Yes, we do required test class for deployment, however if we are using developer account then we can test the VF and Apex code with out it.
It is must when we are deploying the code from sandbox to production orgs.
Hope this resolve your query.