Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scheduled Automate execution of test in nunit

Tags:

c#

nunit

watin

How could I automatically execute the test in Nunit at a specific time. For instance I want to run the tests on a nightly build basis

like image 447
sunny Avatar asked Dec 16 '22 18:12

sunny


1 Answers

You could use an CI system like hudson or Cruisecontrol.NET, these systems have support for most of the .NET unit testing frameworks. We use MSTest for the newer projects and NUnit and build these with Hudson.

like image 64
Bas Danen Avatar answered Jan 04 '23 13:01

Bas Danen