package org.expressolivre.cte.calendar.compartilhar; import org.expressolivre.cte.common.BaseCalendarTestCase; import org.expressolivre.cte.pages.calendar.AgendaPermissionPage; import org.testng.annotations.Test; /** * Suite:[FUN03.7] Compartilhar agenda * * Caso de Teste: EL-987:Excluir todos Usuários com compartilhamento de agenda * * Link: http://testlink.expressolivre.org/linkto.php?tprojectPrefix=EL&item= * testcase&id=EL-987 * * @author L.F.Estivalet (Serpro) * * Created on Aug 25, 2011 at 2:08:24 PM * */ public class ExcluirTodosUsuariosCompartilhamentoTestCase extends BaseCalendarTestCase { @Test public void excluirTodosUsuariosCompartilhamento() { AgendaPermissionPage app = super.openAgendaPermissionPage(); app.removeAllUsers(); app.apply(); } }