source: devel/testlink/automation2.0/src/test/java/org/expressolivre/cte/calendar/compartilhar/ExcluirTodosUsuariosCompartilhamentoTestCase.java @ 5025

Revision 5025, 806 bytes checked in by luiz-fernando, 13 years ago (diff)

Ticket #1771 - Adicionado testes automatizados para modulo da agenda

Line 
1package org.expressolivre.cte.calendar.compartilhar;
2
3import org.expressolivre.cte.common.BaseCalendarTestCase;
4import org.expressolivre.cte.pages.calendar.AgendaPermissionPage;
5import org.testng.annotations.Test;
6
7/**
8 * Suite:[FUN03.7] Compartilhar agenda
9 *
10 * Caso de Teste: EL-987:Excluir todos Usuários com compartilhamento de agenda
11 *
12 * Link: http://testlink.expressolivre.org/linkto.php?tprojectPrefix=EL&item=
13 * testcase&id=EL-987
14 *
15 * @author L.F.Estivalet (Serpro)
16 *
17 *         Created on Aug 25, 2011 at 2:08:24 PM
18 *
19 */
20public class ExcluirTodosUsuariosCompartilhamentoTestCase extends
21                BaseCalendarTestCase {
22
23        @Test
24        public void excluirTodosUsuariosCompartilhamento() {
25                AgendaPermissionPage app = super.openAgendaPermissionPage();
26                app.removeAllUsers();
27                app.apply();
28        }
29
30}
Note: See TracBrowser for help on using the repository browser.