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

Revision 3523, 577 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.ler;
2
3import org.junit.Test;
4
5import br.gov.serpro.cte.common.ExpressoMailTestCase;
6import br.gov.serpro.cte.email.compor.EnviarEmailTestCase;
7
8/**
9 * @author L.F.Estivalet (Serpro)
10 *
11 *         Created on Nov 16, 2010 at 4:41:59 PM
12 *
13 */
14public class ApagarEmailAbertoTestCase extends ExpressoMailTestCase {
15
16        @Test
17        public void testa() throws Exception {
18                super.executeTestCase(EnviarEmailTestCase.class,
19                                new Class[] { boolean.class }, new Object[] { false });
20
21                super.readEmail(Valor.ASSUNTO.getValue());
22                super.deleteEmail();
23        }
24}
Note: See TracBrowser for help on using the repository browser.