source: devel/testlink/automation2.0/src/test/java/org/expressolivre/cte/email/responder/ResponderTodosEmailSemHistoricoTestCase.java @ 4606

Revision 4606, 887 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1771 - Metodos @Test tiveram seus nomes mudados para nomes mais significativos

Line 
1package org.expressolivre.cte.email.responder;
2
3import org.expressolivre.cte.common.BaseEmailTestCase;
4import org.testng.annotations.Test;
5
6/**
7 * Suite:[FUN02.5] Responder Mensagem
8 *
9 * Caso de Teste: EL-604:Responder a todos remetentes sem historico
10 *
11 * Link: http://testlink.expressolivre.org/linkto.php?tprojectPrefix=EL&item=
12 * testcase&id=EL-604
13 *
14 * @see org.expressolivre.cte.email.compor.EnviarEmailMultiplosDestinatariosTestCase
15 *
16 * @author L.F.Estivalet (Serpro)
17 *
18 *         Created on Jan 26, 2011 at 9:27:24 AM
19 *
20 */
21public class ResponderTodosEmailSemHistoricoTestCase extends BaseEmailTestCase {
22
23        /**
24         * Le e responde emails a todos sem historico.
25         */
26        @Test
27        public void responderEmailSemHistorico() {
28                String id = mp.readEmail(EMAIL_ASSUNTO_MULTIPLOS_DESTINATARIOS);
29                mp.replyAllEmailWithoutHistory(id);
30                mp.assertMessage(MSG_EMAIL_ENVIADO);
31        }
32
33}
Note: See TracBrowser for help on using the repository browser.