testing websites and web services

  • Thread starter Thread starter Jessica Weiner
  • Start date Start date
J

Jessica Weiner

I have a local IIS server and a SQL server 2000 setup on my home computer. I
am going to create a database and some tables along with stored precudures.
Is that all I need to start building and testing my websites?

Thanks.
Jess
 
Hello Jessica,

Use UnitTest for this. You need to test each methods of WS to be sure it
returns regular values

Creating DB and tables migh not mean that you WS works correctly, becase
wrong DB/Table could create

You need to apply UnitTest on the each stage of you system - test WS, test
stored procedures

JW> I have a local IIS server and a SQL server 2000 setup on my home
JW> computer. I am going to create a database and some tables along with
JW> stored precudures. Is that all I need to start building and testing
JW> my websites?

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Michael Nemtsev said:
You need to apply UnitTest on the each stage of you system - test WS, test
stored procedures

What is a good unit testing tool which is easy to learn and use?

Thanks.
Jess
 
Hello Jessica,

Use NUnit (http://nunit.sf.net) or VS 2005 tests (u need TeamSuite Edition
of VS 2005)
Start reading from there http://www.codeproject.com/csharp/unittestmanual.asp
and http://www.codeproject.com/csharp/autp1.asp (there are 5 articles, change
from 1 to 5 in autp1.asp)

And about TDD: http://www.codeproject.com/dotnet/tdd_in_dotnet.asp

BTW, you can use Rubby for testing web applications. Read there http://www.codeproject.com/useritems/RubyTestExecutor.asp
JW> What is a good unit testing tool which is easy to learn and use?

---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Back
Top