-1

I use Nant to run the test with Nunit.

Is it possible to set the time in the Nant .build file,

and let the test run in the time as I set.

And if it can be execute ,how can I write the build file?

Amicable
  • 3,115
  • 3
  • 49
  • 77
Edison
  • 79
  • 1
  • 13
  • It sounds like a rather strange requirement... Could you give more details why you need this? Unit tests are usually run during the build of the project, and all time variables are relative to the time build starts... – Yan Sklyarenko Aug 08 '12 at 10:42

1 Answers1

1

It sounds like you're talking about setting up a continuous integration environment.

I highly recommend you look into Jenkins as it's extremely easy to get up and running, and will do exactly what you want.

Peter Bernier
  • 8,038
  • 6
  • 38
  • 53