package br.gov.serpro.cte.email.compor; import org.junit.Test; import br.gov.serpro.cte.common.ExpressoMailTestCase; /** * @author L.F.Estivalet (Serpro) * * Created on Nov 16, 2010 at 4:32:01 PM * */ public class EnviarEmailImportanteTestCase extends ExpressoMailTestCase { @Test public void testaEnviarEmailImportante() throws Exception { super.composeEmail(Valor.EMAIL_TESTE_1.getValue(), Valor.ASSUNTO_IMPORTANTE.getValue()); selenium.click(Campo.IMPORTANTE_CHECKBOX.getValue()); super.sendEmail(); } }