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

Revision 3523, 706 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.EnviarEmailImportanteTestCase;
7
8/**
9 * @author L.F.Estivalet (Serpro)
10 *
11 *         Created on Nov 19, 2010 at 2:55:41 PM
12 *
13 */
14public class MarcarEmailNormalTestCase extends ExpressoMailTestCase {
15
16        @Test
17        public void testa() throws Exception {
18                super.executeTestCase(EnviarEmailImportanteTestCase.class,
19                                new Class[] { boolean.class }, new Object[] { false });
20                super.readEmail(Valor.ASSUNTO.getValue());
21                selenium.click(Campo.NORMAL.getValue());
22                this.assertMessage(Campo.MENSAGEM.getValue(),
23                                Mensagem.MARCAR_NORMAL.getValue());
24        }
25
26}
Note: See TracBrowser for help on using the repository browser.