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

Revision 3523, 675 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:54:10 PM
12 *
13 */
14public class ResponderEmailTodosTestCase extends ExpressoMailTestCase {
15
16        @Test
17        public void testa() throws Exception {
18                super.executeTestCase(EnviarEmailMultiplosDestinatariosTestCase.class,
19                                new Class[] { boolean.class }, new Object[] { false });
20                String id = super.readEmail(Valor.ASSUNTO_MULTIPLOS_DESTINATARIOS
21                                .getValue());
22                super.replyAllEmail(id);
23        }
24
25}
Note: See TracBrowser for help on using the repository browser.