Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/SeguridadObjectMother.cs @ 12:05996fa19e04
Unificamos Van y Cafe en Evento
Agenda.Publicar con los valores como parámetros independientes
author | nelo@MTEySS.neluz.int |
---|---|
date | Sun, 13 Mar 2011 19:50:17 -0300 |
parents | c90492faf268 |
children | 475be11edf56 |
line wrap: on
line source
using System; using AltNetHispano.Agendas.Domain; using System.Security.Principal; namespace AltNetHispano.Agendas.Tests { public static class SeguridadObjectMother { public static GenericPrincipal GetGenericPrincipalAutenticadoSinRoles() { return new GenericPrincipal(GetGenericIdentityAutenticado(), null); } public static GenericPrincipal GetGenericPrincipalSinAutenticar() { return new GenericPrincipal(GetGenericIdentitySinAutenticar(), null); } public static GenericIdentity GetGenericIdentityAutenticado() { return new GenericIdentity("neluz"); } public static GenericIdentity GetGenericIdentitySinAutenticar() { return new GenericIdentity(""); } } }