suppose an interviewer asks you to write a testcase for a
login window (and application is not given to test). Should
we write actual results or expected results or both?
Answers were Sorted based on User's Feedback
Answer / phani_k07
We will write the test case procedures only ,we can write
the BVA and ECP test cases for it.For instance
TEst case 1 :valid user name entry (shud be b/w 4 -14 chars)
then
BVA are min char 4 max char 14,min+1 ,min -1 ,max +1 ,max-1.
ECP are a to z ,0 to 9 ,A-Z,special chars ,blank.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / b.venkat reddy
if u draw the diagram of login as follow
username .............
password .............
ok cancel
first we will write the testcases based on boundary value
analysis and equilly partitioning
accorinding bva, if username accept the characters between
4-14 we should write x-1,x,x+1 and y-1,y,y+1 as 3,4,5 and
13,14,15
according to eq, we should write the valid and invalid case
based on 0-9,a-z,A-Z,special characters and spaces
if any wrong mail me ,thank u
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / nits
you should go for test scenarios..thats it.It will be
enough for the interviewer.
Is This Answer Correct ? | 1 Yes | 0 No |
Give me a sample test case for an online purchasing system?What testings u do for the same ?
8 Answers Flipkart, NIIT, Polaris, SQTL, TCS,
What is quick test professional and what test environment it supports?
Please give me a test case scenario for search engine covering all the fuctionalities
How to write test case for this scenario. The system shall allow for a wild card search for the first name with a minimum of one character.
Write a test case scenario for Web-based address book?
hi can anybody can write the test cases for sticky note
Can test case contains more than 50 steps in single test case?
How does one write Test Cases?
For example out of 100 test cases if I ask you to automate how many you can automate?
13 Answers HCL, MBT,
could u please tell the testcases to test gmail
13 Answers Jamcracker, Snap On,
If the pseudo code below were a programming language ,how many tests are required to achieve 100% statement coverage? 1. If x=3 then 2. Display_messageX; 3. If y=2 then 4. Display_messageY; 5. Else 6. Display_messageZ; 7. Else 8. Display_messageZ; A. 1 B. 2 C. 3 D. 4
Tell me number of test cases required for full statement and branch coverage: Read P Read Q IF P+Q > 100 THEN Print “Large” ENDIF If P > 50 THEN Print “P Large” ENDIF