0

I need make some unit test or some kind of testing which make me help to every time easily to check all my forms are working correctly.

I am developing all application in .Net with c#. but with HTML controls only not a single .Net control.

Mostly work with jQuery Ajax for posting form.

How do I make some testing which help me for all validation. and all front validation is working good and database entry is going good.

1
  • I did not tried any things. I need some automatic tool or just done by one time so I can test next time by code. and it will return just result success or fail. Commented Oct 12, 2012 at 2:40

2 Answers 2

1

It sounds like you are talking more about doing automatic functional testing rather than unit testing to combine all of those aspects into a test. Take a look at the Selenium Web Driver as a mechanism to drive the testing. Here is an example of using Selenium with C#. You can combine that with a testing framework such as Nunit to assert that your tests are correct.

Sign up to request clarification or add additional context in comments.

Comments

1

I think your question is misleading. Unit testing is just for testing a single unit of code. You are trying to test the UI functionality. There is a firefox plugin called selenium and I think it will help you achive what you want. http://seleniumhq.org/docs/02_selenium_ide.html

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.