LeonidasFett
LeonidasFett

Reputation: 3132

testing concept of first project

i am currently doing my functional specification document for my project. the only thing still missing is a testing concept. my project is all about an web app with which i can record and manage employee attendance in my ojt company. i am doing the app in asp.net web forms with c# as programming language. the ide i am using is vs for web 2012.

now i need to write a testing concept. i have already read a little literature about system and module tests. i have designed my app with a few model classes whose only methods are get() and set() methods. it may be that i will write a FEW methods where parameters are expected, for how much that matters.

i am little unsure about what tests i will be planning. could you maybe help me out here? a few crude examples would also be very helpful...

thanks

Upvotes: 1

Views: 255

Answers (3)

Vjay
Vjay

Reputation: 111

Functional testing has many examples. Like Login ,Add,Edit,Delete etc Here u Just check these are functions working properly or not. This is the basic thing in your Application

Upvotes: 1

GG.
GG.

Reputation: 2951

You should be doing following based on your requirements:

  • Unit Testing
  • Integration Testing
  • Regression Testing
  • Functional Testing
  • End to End Testing
  • Load Testing
  • Stress Testing
  • Performance Testing
  • Beta Testing
  • Security Testing
  • Usability Testing

Upvotes: 1

Vjay
Vjay

Reputation: 111

Here if u know about testing then there is no required of Test case & Test Plan.Its for only reference for Ur client. First of all U just do Functional testing, it will help to status of your project. If every function is work properly then application will have no major problem. Then just go through regression & Smoke testing

Upvotes: 1

Related Questions