vote up 0 vote down star
1

I've been working for a while with .net unit testing and stuff. Now I need to create tests for ascx and ascx.cs pages (but it aspx and aspx.cs references might also help). I'm not very familiar with webtests. Can anyone give hints or references that might help (tutorials, blog posts about best practices, etc.)?

It can be references about tests using VS2008 tools or coding the tests using a text editor.

flag

67% accept rate
IMHO, user controls doesn't live by themselves, you have to put them in a page to see them and to test their features, take a look at the MSDN article that I posted or you can just build some test pages, where you use the user controls in several ways -all your use case scenarios and test cases. – Sebastian Aug 4 at 17:50

2 Answers

vote up 0 vote down

Hello,

You can take a look to this article at MSDN

link|flag
I'm having a look at it – Samuel Carrijo Aug 4 at 18:21
vote up 0 vote down

Grab a copy of Fiddler2. When run it will "record" your session with the ASP.NET server (requests and responses - also done by Visual Studio when "recording" a new web test). You can then select the requests and save them as a visual studion web test.

The rest is all about understanding how ASP.NET creates and uses Requests and responses to control the application.

Turn your web tests into coded webtests and search microsoft for details on each object the webtest uses for extra credit.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.