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

Revision 3523, 533 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.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:46:53 PM
11 *
12 */
13public class EnviarEmailSemDestinatarioTestCase extends ExpressoMailTestCase {
14
15        @Test
16        public void testa() throws Exception {
17                super.composeEmail("", Valor.ASSUNTO_SEM_DESTINATARIO.getValue());
18                super.sendEmail();
19                super.assertMessage(Campo.MENSAGEM.getValue(),
20                                Mensagem.SEM_DESTINATARIO.getValue());
21        }
22}
Note: See TracBrowser for help on using the repository browser.