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

Revision 3543, 641 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Campos, mensagens e valores estao em properties

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.EnviarEmailAnexoTestCase;
7
8/**
9 * @author L.F.Estivalet (Serpro)
10 *
11 *         Created on Nov 17, 2010 at 9:50:00 AM
12 *
13 */
14public class EncaminharEmailAnexoTestCase extends ExpressoMailTestCase {
15
16        @Test
17        public void testa() throws Exception {
18                super.executeTestCase(EnviarEmailAnexoTestCase.class,
19                                new Class[] { boolean.class }, new Object[] { false });
20
21                String id = super.readEmail(getValor("assunto.anexo"));
22                super.forwardEmail(id, getValor("email.teste.1"));
23        }
24
25}
Note: See TracBrowser for help on using the repository browser.