* @throws MyLeadException
*/
public void testDoesUserHaveMyLeadAccount() throws MyLeadException {
MyLeadAgentStub stub = new MyLeadAgentStub(this.configuration
.getMyLeadAgentURL(), this.myProxyClient.getProxy());
boolean result = stub.doesUserHaveMyLeadAccount(this.configuration
.getMyLeadUser());
assertEquals(true, result);
boolean result2 = stub.doesUserHaveMyLeadAccount(FAKE_USER_ID);
assertEquals(false, result2);