source: devel/testlink/automation2.0/src/test/java/org/expressolivre/cte/email/ler/BloquearUsuarioTestCase.java @ 4675

Revision 4675, 857 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1771 - Refactoring, criadas novas classes para Pasta, Filtro, Pesquisa

Line 
1package org.expressolivre.cte.email.ler;
2
3import org.expressolivre.cte.common.BaseEmailTestCase;
4import org.testng.annotations.Test;
5
6/**
7 * Suite:[FUN02.2] Ler mensagem
8 *
9 * Caso de Teste:
10 *
11 * EL-1145:Bloquear usuario
12 *
13 * Link: http://testlink.expressolivre.org/linkto.php?tprojectPrefix=EL&item=
14 * testcase&id=EL-1145
15 *
16 * @see org.expressolivre.cte.email.compor.EnviarEmailTestCase
17 *
18 * @author L.F.Estivalet (Serpro)
19 *
20 *         Created on May 12, 2011 at 2:22:00 PM
21 *
22 */
23public class BloquearUsuarioTestCase extends BaseEmailTestCase {
24
25        /**
26         * Executa o teste. Apenas procura o email previamente enviado e tenta
27         * abrir.
28         */
29        @Test
30        public void bloquearRemetente() {
31                String id = mp.readEmail(EMAIL_ASSUNTO);
32                mp.showDetails(id);
33                mp.blockRecipient(MSG_REMETENTE_BLOQUEAR);
34                mp.assertMessage(MSG_REMETENTE_BLOQUEADO);
35        }
36
37}
Note: See TracBrowser for help on using the repository browser.