source: devel/testlink/automation/src/test/java/br/gov/serpro/cte/email/responder/ResponderEmailTodosSemHistoricoTestCase.java @ 3523

Revision 3523, 703 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Automacao dos casos de teste do Expresso documentados no Testlink

Line 
1package br.gov.serpro.cte.email.responder;
2
3import org.junit.Test;
4
5import br.gov.serpro.cte.common.ExpressoMailTestCase;
6import br.gov.serpro.cte.email.compor.EnviarEmailMultiplosDestinatariosTestCase;
7
8/**
9 * @author L.F.Estivalet (Serpro)
10 *
11 *         Created on Nov 19, 2010 at 3:57:04 PM
12 *
13 */
14public class ResponderEmailTodosSemHistoricoTestCase extends
15                ExpressoMailTestCase {
16
17        @Test
18        public void testa() throws Exception {
19                super.executeTestCase(EnviarEmailMultiplosDestinatariosTestCase.class,
20                                new Class[] { boolean.class }, new Object[] { false });
21                String id = super.readEmail(Valor.ASSUNTO_MULTIPLOS_DESTINATARIOS
22                                .getValue());
23                super.replyAllEmailWithoutHistory(id);
24        }
25
26}
Note: See TracBrowser for help on using the repository browser.