source: devel/testlink/calendar/FUN03.2/src/test/java/br/gov/serpro/cte/email/ler/MarcarEmailTestCase.java @ 3505

Revision 3505, 761 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1402 - Automacao dos casos de teste do modulo ExpressoMail? documentados no Testlink

Line 
1package br.gov.serpro.cte.email.ler;
2
3import org.junit.Test;
4
5import br.gov.serpro.cte.common.ExpressoMailTestCase;
6
7/**
8 * @author L.F.Estivalet (Serpro)
9 *
10 *         Created on Nov 16, 2010 at 4:47:05 PM
11 *
12 */
13public class MarcarEmailTestCase extends ExpressoMailTestCase {
14
15        @Test
16        public void testaMarcarEmailImportante() throws Exception {
17                super.readEmail(Valor.ASSUNTO.getValue());
18                selenium.click(Campo.IMPORTANTE.getValue());
19        }
20
21        @Test
22        public void testaMarcarEmailNormal() throws Exception {
23                super.readEmail(Valor.ASSUNTO.getValue());
24                selenium.click(Campo.NORMAL.getValue());
25        }
26
27        @Test
28        public void testaMarcarEmailNaoLido() throws Exception {
29                super.readEmail(Valor.ASSUNTO.getValue());
30                selenium.click(Campo.NAO_LIDO.getValue());
31        }
32}
Note: See TracBrowser for help on using the repository browser.