package br.gov.serpro.cte.email.ler; import org.junit.Test; import br.gov.serpro.cte.common.ExpressoMailTestCase; import br.gov.serpro.cte.email.compor.EnviarEmailImportanteTestCase; /** * @author L.F.Estivalet (Serpro) * * Created on Nov 19, 2010 at 2:55:41 PM * */ public class MarcarEmailNormalTestCase extends ExpressoMailTestCase { @Test public void testa() throws Exception { super.executeTestCase(EnviarEmailImportanteTestCase.class, new Class[] { boolean.class }, new Object[] { false }); super.readEmail(Valor.ASSUNTO.getValue()); selenium.click(Campo.NORMAL.getValue()); this.assertMessage(Campo.MENSAGEM.getValue(), Mensagem.MARCAR_NORMAL.getValue()); } }