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

Reset password test class with assert statement
Hi All,
Can anyone help me in wrting the test class with assert statement for the following code?
Thanks,
Anuj
Can anyone help me in wrting the test class with assert statement for the following code?
global with sharing class ResetPortalPassword{ webService static String ResetPortalPassword(String userId) { System.ResetPasswordResult result = System.ResetPassword(userId,true); return String.valueOf(result); } }
Thanks,
Anuj
Use below code to write test class for your webservice:
Just make sure you make below changes in above code:
> Make sure Username is unique.
> Make sure you replce the ProfileId with any 15 digit ProfileId in your org.
Let me know if you any further questions.
Thanks,
Manish
All Answers
refer this https://developer.salesforce.com/forums/?id=906F0000000926DIAQ
Use below code to write test class for your webservice:
Just make sure you make below changes in above code:
> Make sure Username is unique.
> Make sure you replce the ProfileId with any 15 digit ProfileId in your org.
Let me know if you any further questions.
Thanks,
Manish