I need to write a use cases to test the asp.net mvc applicatoin. How can I do that?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just further to what @Keith has said, Use Cases should be platform independant and should be the same for Web, Windows Apps, Cars etc etc.
Writing a use case should be a simple set of tasks that can be extrapolated into a feature of the application you are writing.
If you are writing test cases then that’s different. We write our tests here to test individual functionaility and then we write further tests to test integration which ensures two things.
Firstly that the actual methods perform as expected and any changes to code in or away from these methods does not break them or if they do break then they are modified accordningly.
Secondly that the integration of our various layers work as advertised and any changes made to core methods does not break the core architecture.