source: devel/testlink/automation2.0/src/test/java/br/gov/serpro/expresso/cte/email/compor/EnviarEmailMultiplosDestinatariosTestCase.java @ 3708

Revision 3708, 555 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Novos casos de teste implementados usando WebDriver?

Line 
1package br.gov.serpro.expresso.cte.email.compor;
2
3import org.testng.annotations.Test;
4
5import br.gov.serpro.expresso.cte.common.BaseEmailTestCase;
6
7/**
8 * @author L.F.Estivalet (Serpro)
9 *
10 *         Created on Jan 18, 2011 at 9:24:40 AM
11 *
12 */
13public class EnviarEmailMultiplosDestinatariosTestCase extends
14                BaseEmailTestCase {
15        @Test
16        public void test() {
17                mp.composeEmail(EMAIL_TESTE_N_DESTINATARIOS,
18                                EMAIL_ASSUNTO_MULTIPLOS_DESTINATARIOS,
19                                EMAIL_TEXTO_MULTIPLOS_DESTINATARIOS);
20                mp.sendMail();
21                mp.assertMessage(MSG_EMAIL_ENVIADO);
22        }
23
24}
Note: See TracBrowser for help on using the repository browser.