views:

88

answers:

2

Can you please give me a whitebox testing tool for Asp.net

A: 

Do you mean something like Watin ?

Philippe Leybaert
No. WatiN, I think, performs black box testing on methods. I need a test tool that will perform a unit test on each line inside the method. Hopefully that tool will work well with Visual Studio 2008.
A: 

Are you looking for a unit testing framework? If so:

NUnit
MbUnit
MSTest (built-in to Visual Studio 2008)
xUnit.Net
mgroves