DanBlog

Il blog di Daniele Armanasco
posts - 48, comments - 73, trackbacks - 10

NUNIT quick start

Utilizzare NUnit in un progetto:

- installare, se necessario, il programma;

- aggiungere un progetto di test alla solution; in questo progetto:

- aggiungere un riferimento a nunit.framework.dll

- aggiungere le classi di test (TestFixture; DEVONO ESSERE PUBLIC) e i test veri e propri (DEVONO RITORNARE VOID E NON DEVONO AVERE PARAMETRI):

using NUnit.Framework;
using BusinnessObjects;

namespace Test
{
[TestFixture]
public class UserTest
{
[Test]
public void DefaultUserAreNotDestination()
{
User user = new User();
user.Name = "Pinco Pallino";

Assert.AreEqual(false, user.IsDestination);
}

- avviare il programma di esecuzione dei test (nunit-gui.exe) e in esso:

- definire un nuovo progetto di test e salvarlo

- aggiungere al progetto di NUnit l'assembly del progetto di test presente nella solution

Non resta che compilare la solution ed eseguire i test (ad ogni compilazione il progetto NUnit ricarica i test automaticamente).

Print | posted on lunedì 13 agosto 2007 07:16 | Filed Under [ Scoperte di un principiante ]

Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET