can anyone please send me the sample testcases on how to
write it into the testtemplates
Answers were Sorted based on User's Feedback
Answer / srinivasa
Test Case Templete fields are:
S.No, Test Case description,Expected Value,Actual
Value,Result(Pass/Fail) and Remarks
Sample Test case on login screen
1, Enter valid inputs in the User Id and Password field and
clik on sign in button, System should display home page,
After executing u have to write actual value, Result and
Remarks
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / sagar bandari
test case sample fields
testcase id,test case title,description,expected
value,actual value,status(pass/fail),remarks
testcase id:unique identification number which relates to
individual elements of SRS
testcase title:-easy to undestood eg.as like subject when we
attaching some mail in yahoomail
description:-steps taken by description of application testing
Expected Result:- Output to be produced
Actual Result:- Actual result after executing the test case
sample test cases for an login screen in yahoomail
-----------------------------------------------------
test case id:-tc_yahoomail_login_001
------------
test case title:-verification of login in yahoomail
----------------
description:- open browser, enter valid
------------
url"http://www.yahoomail.com",login to entering by valid
username and password and click "login" button
test data:username:ragas_b,password"*******"
expected value:-user successfully login into yahoo home page
--------------
actual value and status, remarks wrote after executing the
application
ragas_b@yahoo.com
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / swetha
if u are using the qc u can find all the fields in there..
it differs from person to person..every one has their own
way of writing testcases few write every step in detail and
few write them formally,i mean only the basic steps..
but the basic fields every one uses is as follows..
Testcase ID,name,steps,expected result,actual
result,description.
| Is This Answer Correct ? | 0 Yes | 0 No |
Hai, Could anybody please let me know, how to calculate the number of test cases required to test a program. Please provide me the answer for the following question: “What type of ticket do you require, single or return?”IF the customer wants ‘return’Ask: “What rate, Standard or Cheap-day?”IF the customer replies ‘Cheap-day’Say: “That will be $11:20”ELSESay: “That will be $19:50”ENDIFELSESay: “That will be $9:75”ENDIFNow decide the minimum number of tests that are needed to ensure that allthe questions have been asked, all combinations have occurred and allreplies given. a) 3 b) 4 c) 5 d) 6
In a log in page what will be test procedure,test scenario,test discription & test steps?
I need GUI test case for home page?
pls i want test cases for telecom billing system
test cases for restaurant billing system????????
(questions asked in interview)hi every one can any one please answer to this questions.these questions were asked in an interview.i have another interview next week . 1.when the time schedule is tight how will you approch the testing,and the relese is nearing and we need to finish testing how can we follow in that case.do we need to exicute all the test cases or can priortise and leave some to next relase. 2. when a new feature is added to the existing application we need to add new test cases but after that do we need to change all the existing test cases and while running do we need to exicute entire application test cases or only the new feature test cases and related new feature test cases. 3.do you have any situation where you have to write and exicute the test cases same time, how will you follow.does it happens in real time. 4.example of bug which is not reproducible.like tester say that there is bug and developer say no can some example of such bugs. 5.during regression testing some times do we need to add new some additional test cases to test that bug.
How does the size of the OPCODE field limit the number of operations? Give an example to support your explanation?
This part of a program is given: WHILE (condition A) Do B END WHILE How many decisions should be tested in this code in order to achieve 100% decision coverage? A. 2 B. Indefinite C. 1 D. 4
how to test ip address?
3 Answers Cisco, QSpiders, Satyam,
Roads concatenation Problem Consider we have some GIS (Geo Information System) operating over some road network. Each road represented as array of two-dimensional geographical points. Road network is a set of roads. System has function called Concatenate(). This function takes raw road network and should return optimized road network. Optimization lies in concatenating roads with matching start or end points, i.e. if road AB end point matches road BC start point, then optimized network should contain concatenated road AC. Optimized network shouldn’t contain two roads which can be concatenated. Your task is to suggest set of test cases for Concatenate() function in order to make sure it works correctly. public interface IPoint { double Lat { get; } double Lon { get; } } public Road : List<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);
Describe to me what you see as a process. Not a particular process, just the basics of having a process.
How to generate test cases for 'replace a string' method?