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

Revision 3543, 683 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.compor;
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 18, 2010 at 3:49:56 PM
11 *
12 */
13public class EnviarEmailSemAssuntoTestCase extends ExpressoMailTestCase {
14
15        // TODO Remover o email sem assunto da Caixa de Entrada, itens enviados e
16        // lixeira e adicionar teste de verificacao de email enviado.
17        @Test
18        public void testa() throws Exception {
19                super.composeEmail(getValor("email.teste.1"), "",
20                                getValor("texto.email.sem.assunto"));
21                super.sendEmail();
22                assertTrue(selenium.getConfirmation().matches(
23                                getMensagem("sem.assunto")));
24        }
25
26}
Note: See TracBrowser for help on using the repository browser.