@Test
  public void vnocCreditReqEmailForGamLooksGood() {
    given(gamCtc.getPrimaryEmailContact()).willReturn("*****@*****.**");
    given(custCtc.getPrimaryEmailContact()).willReturn("*****@*****.**");
    given(customer.getCustomerId()).willReturn(ACME_ID);
    given(customer.getCustomerName()).willReturn("Acme Labs");

    Email email = cRes.genEmailForGam(customer, gamCtc, custCtc, 100);
    assertNotNull(email.getSmtpServer());
    assertEquals(email.getTo(), "*****@*****.**");
    assertEquals("NEW LEAD for Acme Labs from [email protected]", email.getSubject());
  }