comparison Agendas/trunk/src/Agendas.Tests/Cruds/IPersonaCrudTest.cs @ 178:33e57fd1a6c9

Roles: en dominio y autoregistración
author nelopauselli
date Mon, 08 Aug 2011 12:30:37 -0300
parents
children
comparison
equal deleted inserted replaced
177:784d81e32366 178:33e57fd1a6c9
1 using NUnit.Framework;
2
3 namespace AltNetHispano.Agendas.Tests.Cruds
4 {
5 public interface IPersonaCrudTest
6 {
7 [Test]
8 void CreateAdministrador();
9
10 [Test]
11 void ReadAdministrador();
12
13 [Test]
14 void CreateUsuario();
15
16 [Test]
17 void ReadUsuario();
18
19 [Test]
20 void Update();
21 }
22 }