Case Tools Software Testing Lab Manual
Case Tools Software Testing Lab Manual
in
JNTU World
JN
TU
or
ld
LAB MANUAL
www.alljntuworld.in
JNTU World
Program Outcomes
PO3
PO4
PO5
PO6
PO7
PO8
PO9
TU
PO10
or
ld
PO2
PO1
PO11
PO12
Professional Skills: The ability to research, understand and implement computer programs in the
areas related to algorithms, system software, multimedia, web design, big data analytics, and
networking for efficient analysis and design of computer-based systems of varying complexity.
Problem-Solving Skills: The ability to apply standard practices and strategies in software project
development using open-ended programming environments to deliver a quality product for business
success.
Successful Career and Entrepreneurship: The ability to employ modern computer languages,
environments, and platforms in creating innovative career paths, to be an entrepreneur, and a zest for
higher studies.
JN
PSO1
PSO2
PSO3
www.alljntuworld.in
JNTU World
Sl. No.
List of Experiments
Page
No.
a.
b.
c.
a.
b.
c.
a.
b.
c.
a.
b.
c.
10
or
ld
18
25
TU
JN
10
Viva Questions
31
40
45
49
63
73
77
www.alljntuworld.in
JNTU World
Exp.
No.
Experiment
Program
Outcomes
Attained
Program
Specific
Outcomes
Attained
PSO1, PSO2
PSO1, PSO2
PSO1, PSO2
PSO1, PSO2
PO1
PSO1
PO1
PSO1
PO1, PO2
PSO1, PSO2
PSO1, PSO2
PSO1, PSO2
or
ld
a.
b.
c.
a.
b.
c.
a.
b.
c.
TU
JN
10
www.alljntuworld.in
JNTU World
OUTCOMES:
or
ld
The case tools and testing lab helps the student apply the typical SDLC methods to develop various
models as prescribed by the syllabus of OOAD using the appropriate modeling case tools. Testing is
an essential stage of SDLC which needs to be taken up as part of the software development process.
Students practice on various methods of software testing in this lab through testing tools like
WinRunner, LoadRunner, and QTP, in addition to the techniques of manual testing.
Upon the completion of Case Tools & Software Testing practical course, the student will be able to:
Understand and implement the process to be followed in the software development life
cycle.
2.
Analyze and solve specific problems alone or in teams during software development.
3.
4.
Understand and manage a project from beginning to end using UML building blocks.
5.
Analyze any system and study its system specifications and report the various bugs
6.
Simulate test cases for a software project using different testing and tracking tools.
7.
8.
9.
Analyze different testing tools like test director and test link for web testing and bug
tracking.
TU
1.
JN
JNTU World
or
ld
www.alljntuworld.in
JN
TU
www.alljntuworld.in
JNTU World
EXPERIMENT 1 (A)
1.1
OBJECTIVE:
Generate Use case Diagram for ATM System
1.2
1.3
RESOURCES:
1.
2.
DESCRIPTION:
or
ld
The purpose of use case diagram is to capture the dynamic aspect of a system. But this definition is too
generic to describe the purpose. Because other four diagrams (activity, sequence, collaboration and State
chart) are also having the same purpose. So we will look into some specific purpose which will
distinguish it from other four diagrams. Use case diagrams are used to gather the requirements of a
system including internal and external influences. These requirements are mostly design requirements. So
when a system is analyzed to gather its functionalities use cases are prepared and actors are identified.
So in brief, the purposes of use case diagrams can be as follows:
TU
A withdrawal transaction asks the customer to choose a type of account to withdraw from (e.g. checking)
from a menu of possible accounts, and to choose a dollar amount from a menu of possible amounts. The
system verifies that it has sufficient money on hand to satisfy the request before sending the transaction
to the bank. (If not, the customer is informed and asked to enter a different amount.) If the transaction is
approved by the bank, the appropriate amount of cash is dispensed by the machine before it issues a
receipt. A withdrawal transaction can be can-celled by the customer pressing the Cancel key any time
prior to choosing the dollar amount.
Deposit Use Case:
JN
A deposit transaction asks the customer to choose a type of account to deposit to (e.g. checking) from a
menu of possible accounts, and to type in a dollar amount on the keyboard. The transaction is initially
sent to the bank to verify that the ATM can accept a deposit from this customer to this account. If the
transaction is approved, the machine accepts an envelope from the customer containing cash and/or
checks before it issues a receipt. Once the envelope has been received, a second message is sent to the
bank, to confirm that the bank can credit the customers account contingent on manual verification of
the deposit envelope contents by an operator later.
A deposit transaction can be cancelled by the customer pressing the Cancel key any time prior to
inserting the envelope containing the deposit. The transaction is automatically cancelled if the customer
fails to insert the envelope containing the deposit within a reasonable period of time after being asked to
do so.
Transfer Use Case:
A transfer transaction asks the customer to choose a type of account to transfer from (e.g. checking) from
a menu of possible accounts, to choose a different account to transfer to, and to type in a dollar amount
on the keyboard. No further action is required once the transaction is approved by the bank before
printing the receipt. A transfer transaction can be cancelled by the customer pressing the Cancel key any
4
www.alljntuworld.in
JNTU World
or
ld
1.4
PROCEDURE:
1.
2.
3.
Open folder Use Case View. Name your use case diagram.
Double click on the Use Case View icon or right click on Use Case View and select Open.
Now click on the icon for actor and draw an actor on use case view diagram. Actor will represent
your user or the client, which will interact with your system.
Now click on the icon for use case and draw use cases for the system.
Now click on the appropriate arrow for the relation between actor and use case.
Click on the package and show appropriate relation among these three entities.
TU
4.
5.
6.
Update Account:
This use case is for updating corresponding user accounts after transactions (withdraw or deposit or
transfer) are completed.
A.
JN
1.5
www.alljntuworld.in
JNTU World
2.
3.
4.
Which are the common modeling techniques for a Use case Diagram?
5.
TU
1.6
or
ld
B.
LAB ASSIGNMENT:
1.
2.
JN
1.7
1.8
3.
Show that ticket vending machine allows from commuters to buy tickets using Use case Diagram?
4.
Design Use case Diagram for e-library online public access catalog?
5.
1.
What are main flow of events and exception flow of events in use cases ?
2.
3.
4.
5.
www.alljntuworld.in
JNTU World
EXPERIMENT 1 (B)
1.1
OBJECTIVE:
Generate a Class Diagram for ATM System.
1.2
1.3
RESOURCES:
1.
2.
DESCRIPTION:
or
ld
The purpose of the class diagram is to model the static view of an application. The class diagrams are
the only diagrams which can be directly mapped with object oriented languages and thus widely used
at the time of construction. The UML diagrams like activity diagram, sequence diagram can only give
the sequence flow of the application but class diagram is a bit different. So it is the most popular UML
diagram in the coder community. So the purpose of the class diagram can be summarized as:
Analysis and design of the static view of an application.
Describe responsibilities of a system.
Base for component and deployment diagrams.
Forward and reverse engineering.
Classes
Interfaces
Collaborations
Dependency, generalization and association relationships
PROCEDURE:
TU
1.4
Contents:
Class diagrams commonly contain the following things
1.
2.
3.
4.
JN
5.
6.
The Logical View Class Diagram window may already be open. If so, skip to step 3.
Open the Logical View Folder. Double click on the icon next to Main. (Alternately, right click
on Main and select Open).
To draw a class, click on the class icon on the toolbar. Move the cross bar to the class diagram
window and click.
Name the class. Note that you do not want to use the same name as an Actor in your Use Case
diagram. For example, if you have a Student actor, the class should be named Student Proxy.
Now right click on the class to add attributes and methods to your class.
Create all the classes you require for your class model. Using the connection symbols from the
toolbar, connect the classes to show the relationship between those two classes (association,
generalization/specialization or aggregation). Do the same for all the classes.
You can name associations using text box in the tool bar.
To add multiplicity information, right click on the association line and select the desired value.
7.
8.
www.alljntuworld.in
1.6
or
ld
1.5
JNTU World
TU
1.
2.
3.
4.
5.
1.7
LAB ASSIGNMENT:
JN
1.
2.
3.
4.
5.
1.8
1.
2.
3.
4.
5.
www.alljntuworld.in
JNTU World
EXPERIMENT 1 (C)
1.1
OBJECTIVE:
*Generate Use case Diagram for Library System
1.3
RESOURCES:
1.
2.
PROCEDURE:
or
ld
1.2
1. Open folder Use Case View. Name your use case diagram.
2. Double click on the Use Case View icon or right click on Use Case View and select Open.
3. Now click on the icon for actor and draw an actor on use case view diagram. Actor will represent
your user or the client, which will interact with your system.
4. Now click on the icon for use case and draw use cases for the system.
5. Now click on the appropriate arrow for the relation between actor and use case.
6. Click on the package and show appropriate relation among these three entities.
USE CASE DIAGRAM FOR LIBRARY
JN
TU
1.4
www.alljntuworld.in
JNTU World
EXPERIMENT 2(A)
2.1
OBJECTIVE:
Generate a Sequence Diagram for ATM System.
2.2
2.3
RESOURCES:
1.
2.
DESCRIPTION:
or
ld
We have two types of interaction diagrams in UML. One is sequence diagram and the other is a
collaboration diagram. The sequence diagram captures the time sequence of message flow from one
object to another and the collaboration diagram describes the organization of objects in a system taking
part in the message flow.
So the following things are to identified clearly before drawing the interaction diagram:
1.
2.
3.
4.
Purpose:
1.
2.
3.
4.
TU
a.
b.
c.
d.
e.
PROCEDURE:
1.
2.
3.
4.
5.
From Use Case View, Click to highlight the Use Case name.
Right click and select New.
Select Sequence Diagram and type a name for the diagram in the browser.
You can now double click the icon next the name to open the sequence diagram window.
To put actors on the sequence diagram, in the browser, under Use Case View, click on the desired
actor and drag it onto the sequence diagram window.
To put objects on the sequence diagram, in the browser, under Logical View, click on the desired
class and drag it onto the sequence diagram window.
Note that if you use the toolbar to put an object on the sequence diagram, the tool will ask you for
its class. If the class doesnt exist in your Logical View, you will have to create it.
The tool will place your actors and objects from left to right in the order you select them. Once
they are in the window, you can rearrange in the usual manner.
To add a message in the toolbar, select the message arrow, Click on the lifeline of the source of
the message and drag to the lifeline of the destination of the message.
To add a message name, Right click on the message arrow. You can either select one of the
existing messages, or select <new operation> to add a new message.
JN
2.4
6.
7.
8.
9.
10.
10
www.alljntuworld.in
A.
JN
TU
or
ld
2.5
JNTU World
11
www.alljntuworld.in
JN
TU
or
ld
B.
JNTU World
12
www.alljntuworld.in
SEQUENCE DIAGRAM FOR ATM WITHDRAWAL
or
ld
C.
JNTU World
TU
2.6
1.
2.
3.
4.
5.
2.7
LAB ASSIGNMENT:
JN
1.
2.
3.
4.
5.
2.8
1.
2.
3.
4.
5.
www.alljntuworld.in
JNTU World
EXPERIMENT 2 (B)
2.1
OBJECTIVE:
Generate a Collaboration Diagram for ATM System.
2.2
2.3
RESOURCES:
1.
2.
DESCRIPTION:
1.
2.
Path
The Sequence number.
PROCEDURE:
1.
2.
If you have not yet drawn a sequence diagram, follow steps 1-3 in Drawing a Sequence Diagram,
except select Collaboration Diagram in step 3. The steps to put actors and objects on the diagram
are similar.
If you have an existing sequence diagram, you can have the tool generate a collaboration diagram
for you:
i. In the browser click on the name of the sequence diagram to highlight it
ii. Pull down the Browse menu from the menu bar at the top
iii. Select Create Collaboration Diagram
2.4
Objects
Links
Messages
or
ld
A collaboration diagram emphasizes the organization of the objects that participate in an interaction.
Collaboration diagrams have two features that distinguish them from sequence diagrams.
TU
3. The Collaboration Diagram window will appear with all the objects, actors and messages from the
sequence diagram. You may have to rearrange the symbols on the diagram to increase readability.
But if your sequence diagram is correct, you will not have to add any new information to the diagram.
A.
JN
2.5
14
www.alljntuworld.in
or
ld
JN
TU
C.
B.
JNTU World
15
www.alljntuworld.in
PRE LAB VIVA QUESTIONS:
1.
2.
3.
4.
5.
2.7
LAB ASSIGNMENT:
1.
2.
3.
4.
5.
2.8
JN
TU
1.
2.
3.
4.
5.
or
ld
2.6
JNTU World
16
www.alljntuworld.in
JNTU World
EXPERIMENT 2 (C)
2.1
OBJECTIVE:
*Generate a Collaboration Diagram for Online shopping System.
2.2
2.3
RESOURCES:
1.
2.
DESCRIPTION:
1.
2.
Path
The Sequence number.
Objects
Links
Messages
PROCEDURE:
or
ld
A collaboration diagram emphasizes the organization of the objects that participate in an interaction.
Collaboration diagrams have two features that distinguish them from sequence diagrams.
1. If you have not yet drawn a sequence diagram, follow steps 1-3 in Drawing a Sequence Diagram,
except select Collaboration Diagram in step 3. The steps to put actors and objects on the diagram are
similar.
a. If you have an existing sequence diagram, you can have the tool generate a collaboration
diagram for you:
i. In the browser click on the name of the sequence diagram to highlight it
ii. Pull down the Browse menu from the menu bar at the top
iii. Select Create Collaboration Diagram
TU
2. The Collaboration Diagram window will appear with all the objects, actors and messages from the
sequence diagram. You may have to rearrange the symbols on the diagram to increase readability. But
if your sequence diagram is correct, you will not have to add any new information to the diagram.
A.
JN
2.5
17
www.alljntuworld.in
JNTU World
EXPERIMENT 3 (A)
3.1
OBJECTIVE:
Generate a State Diagram for ATM System.
3.2
3.3
RESOURCES:
1.
2.
DESCRIPTIONS:
or
ld
State chart diagram is used to model dynamic nature of a system. They define different states of an
object during its lifetime. And these states are changed by events. So State chart diagrams are useful
to model reactive systems. Reactive systems can be defined as a system that responds to external or
internal events.
State chart diagram describes the flow of control from one state to another state. States are defined as a
condition in which an object exists and it changes when some event is triggered. So the most important
purpose of State chart diagram is to model life time of an object from creation to termination.
State chart diagrams are also used for forward and reverse engineering of a system. But the main
purpose is to model reactive system.
Following are the main purposes of using State chart diagrams:
1.
2.
3.
4.
Contents
Simply state and composite states Transitions, including events and actions
TU
Common use
They are used to model the dynamic aspects of a system. Event ordered behavior of any kind of
objects, to model reactive objects.
PROCEDURE:
1.
2.
3.
4.
Create a state machine when behavior differs based on state. a seminar object is fairly complex,
reacting to events such a enrolling a student differently depending on its current state.
Place the initial state in the top-left corner.
Place the final state in the bottom-right corner.
Model sub states for targeted complexity.
JN
3.4
18
www.alljntuworld.in
A.
JN
TU
or
ld
3.5
JNTU World
19
www.alljntuworld.in
TU
or
ld
B.
JNTU World
3.6
JN
1.
2.
3.
4.
5.
3.7
LAB ASSIGNMENT:
1.
2.
3.
4.
5.
3.8
www.alljntuworld.in
JNTU World
EXPERIMENT 3 (B)
3.1
OBJECTIVE:
Generate an Activity Diagram for ATM System.
3.2
3.3
RESOURCES:
1.
2.
DESCRIPTION:
Contents
or
ld
Activity diagram is basically a flow chart to represent the flow form one activity to another. The activity
can be described as an operation of the system. So the control flow is drawn from one operation to
another. This flow can be sequential, branched or concurrent. Activity diagrams deals with all type of
flow by using elements like fork join etc.
Join
A fork represents the splitting of a single flow of control into two or more concurrent flow of control. A
fork may have one incoming transition and two or more outgoing transitions, each of which represents an
independent flow of control. Below fork the activities associated with each of these path continues in
parallel.
A join represents the synchronization of two or more concurrent flows of control. A join may have two or
more incoming transition and one outgoing transition. Above the join the activities associated with each
of these paths continues in parallel.
Branching
TU
A branch specifies alternate paths takes based on some Boolean expression Branch is represented by
diamond Branch may have one incoming transition and two or more outgoing one on each outgoing
transition, you place a Boolean expression shouldnt overlap but they should cover all possibilities.
Swim lane:
Swim lanes are useful when we model workflows of business processes to partition the activity states on
an activity diagram into groups. Each group representing the business organization responsible for those
activities, these groups are called Swim lanes.
PROCEDURE:
JN
3.4
1.
2.
3.
4.
5.
6.
21
www.alljntuworld.in
TU
or
ld
3.5
JNTU World
3.6
1.
2.
3.
4.
5.
LAB ASSIGNMENT:
JN
3.7
Define state?
What are events?
What are the different state parts?
What are different transition parts?
Explain guard condition?
1.
2.
3.
4.
5.
3.8
1.
2.
3.
4.
5.
22
www.alljntuworld.in
JNTU World
EXPERIMENT 3 (C)
3.1
OBJECTIVE:
*Generate an Activity Diagram for College Information System.
3.2
3.3
RESOURCES:
1.
2.
DESCRIPTION:
Contents
or
ld
Activity diagram is basically a flow chart to represent the flow form one activity to another. The activity
can be described as an operation of the system. So the control flow is drawn from one operation to
another. This flow can be sequential, branched or concurrent. Activity diagrams deals with all type of
flow by using elements like fork join etc.
Join
A fork represents the splitting of a single flow of control into two or more concurrent flow of control. A
fork may have one incoming transition and two or more outgoing transitions, each of which represents an
independent flow of control. Below fork the activities associated with each of these path continues in
parallel.
A join represents the synchronization of two or more concurrent flows of control. A join may have two or
more incoming transition and one outgoing transition. Above the join the activities associated with each
of these paths continues in parallel.
Branching
TU
A branch specifies alternate paths takes based on some Boolean expression Branch is represented by
diamond Branch may have one incoming transition and two or more outgoing one on each outgoing
transition, you place a Boolean expression shouldnt overlap but they should cover all possibilities.
Swim lane:
Swim lanes are useful when we model workflows of business processes to partition the activity states on
an activity diagram into groups. Each group representing the business organization responsible for those
activities, these groups are called Swim lanes.
PROCEDURE:
JN
3.4
23
www.alljntuworld.in
JN
TU
or
ld
3.5
JNTU World
24
www.alljntuworld.in
JNTU World
EXPERIMENT 4 (A)
4.1
OBJECTIVE:
Generate a Component Diagram for ATM System.
4.2
RESOURCES:
1. A working computer system with either Windows or Linux.
2. Rational Rose Software or Visual Paradigm Software.
4.3
DESCRIPTION:
or
ld
Now after identifying the artifacts the following points needs to be followed:
Use a meaningful name to identify the component for which the diagram is to be drawn.
Prepare a mental layout before producing using tools.
Use notes for clarifying important points.
TU
Contents
1.
2.
3.
4.
JN
4.4
25
www.alljntuworld.in
4.6
Define components?
How components and classes are related?
Compare components and interfaces?
What are the steps for modeling executable and libraries?
What are different modeling techniques?
LAB ASSIGNMENT:
TU
4.7
or
ld
4.5
JNTU World
1.
2.
3.
4.
5.
JN
4.8
1.
2.
3.
4.
5.
26
www.alljntuworld.in
JNTU World
EXPERIMENT 4 (B)
4.1
OBJECTIVE:
Generate a Deployment Diagram for ATM System.
4.2
4.3
RESOURCES:
1.
2.
DESCRIPTION:
PROCEDURE:
1.
2.
3.
4.
5.
JN
TU
4.5
4.4
or
ld
Deployment diagram depicts a static view of the run-time configuration of processing nodes and the
components that run on those nodes. In other words, deployment diagrams show the hardware for your
system, the software that is installed on that hardware, and the middleware used to connect the disparate
machines to one another.
You want to create a deployment diagram for applications that are deployed to several machines, for
example a point-of-sales application running on a thin-client network computer which interacts with
several internal servers behind your corporate firewall or a customer service system deployed using a
web services architecture such as Microsoft's .NET. Deployment diagrams can also be created to explore
the architecture of embedded systems, showing how the hardware and software components work
together. In short, you may want to consider creating a deployment diagram for all but the most trivial of
systems.
27
www.alljntuworld.in
4.7
LAB ASSIGNMENT:
1.
2.
3.
4.
5.
4.8
Define node?
Compare node and components?
What are the contents of deployment diagrams?
How a node is rendered in UML?
How to model a fully distributed model?
JN
TU
1.
2.
3.
4.
5.
or
ld
4.6
JNTU World
28
www.alljntuworld.in
JNTU World
EXPERIMENT 4 (C)
4.1
OBJECTIVE:
*Generate a Deployment Diagram for Google Search engine.
4.2
4.3
RESOURCES:
1.
2.
DESCRIPTION:
4.4
PROCEDURE:
or
ld
Deployment diagram depicts a static view of the run-time configuration of processing nodes and the
components that run on those nodes. In other words, deployment diagrams show the hardware for your
system, the software that is installed on that hardware, and the middleware used to connect the disparate
machines to one another.
You want to create a deployment diagram for applications that are deployed to several machines, for
example a point-of-sales application running on a thin-client network computer which interacts with
several internal servers behind your corporate firewall or a customer service system deployed using a
web services architecture such as Microsoft's .NET. Deployment diagrams can also be created to explore
the architecture of embedded systems, showing how the hardware and software components work
together. In short, you may want to consider creating a deployment diagram for all but the most trivial of
systems.
JN
TU
4.5
29
JNTU World
or
ld
www.alljntuworld.in
JN
TU
30
www.alljntuworld.in
JNTU World
EXPERIMENT 5
5.1
OBJECTIVE:
Write a C program to demonstrate the working of the following constructs:
i. dowhile
ii. whiledo
iii. if else
iv. switch
v. for Loops in C language.
RESOURCES:
1.
2.
5.3
Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
PROGRAM LOGIC:
i) do while
or
ld
5.2
ii) whiledo
TU
declare i value.
read i value .
if i%2== 0 print i as even number.
otherwise odd number.
JN
iv) switch
declare a,b,c.
read i value.
print enter a,b values .
read a,b values .
switch ( case value = i)
if case value = 1
c is sum of a and b .
if case value =2
c is difference of a and b .
if case value = 3
c is multiplication of a and b.
if case value = 4
c is division of a and b .
31
www.alljntuworld.in
JNTU World
v) for loop
declare i value.
read i value .
loop initialize i to 1
if i<=5
print i as even number.
else
print i as odd number.
increment i value .
5.4
PROCEDURE:
1. Create : Open editor vi x.c write a program after that press ESC and: wq for save and Quit.
2. Compile: gcc x.c.
5.5
or
ld
3. Execute: . / a.out.
SOURCE CODE:
i) dowhile
TU
#include <stdio.h>
void main ()
{
int i, n=5,j=0;
printf(enter a no);
scanf(%d,&i);
do
{
if(i%2==0)
{
printf("%d", i);
printf("is a even no.");
i++;
j++;
}
else
{
printf("%d", i);
printf("is a odd no.\n"); i++;
j++;
}
}while(i>0&&j<n);
getch();
}
JN
ii) whiledo
#include<stdio.h>
#include <conio.h>
void main ()
{
int i,n=5,j=1;
printf(enter a no);
scanf(%d,&i);
while (i>0 && j<n)
{
if(i%2==0)
{
printf(%d,i);
printf(is a even number);
i++;
j++;
32
www.alljntuworld.in
JNTU World
}
else {
printf(%d,i);
printf(its a odd number);
i++;
j++;
}
}
getch();
}
void main () {
int I,c;
printf(enter a number );
scanf(%d,&i);
if(i%2==0) {
printf(%d,i);
printf(s a even number);
}
else {
printf(%d,i);
printf(is a odd number);
} }
iv) switch
or
ld
iii) if.else
JN
TU
void main()
{
int
a,b,c;
printf(1.add/n 2.sub /n 3.mul /n 4.div /n enter your choice);
scanf(%d , &i);
printf(enter a,b values);
scanf(%d%d,&a,&b);
switch(i)
{
case 1: c=a+b;
printf(the sum of a & b is: %d,c); break;
case 2: c=a-b;
printf( the diff of a & b is: %d ,c); break;
case 3: c=a*b;
printf(the mul of a & b is: %d,c); break;
case 4: c=a/b;
printf( the div of a & b is: %d ,c); break;
default:
printf(enter your choice); break;
}
getch();
}
v) for
main()
{
int i;
printf(enter a no);
scanf(%d,&i);
for(i=1;i<=5;i++)
{
33
www.alljntuworld.in
JNTU World
if(i%2==0)
{
printf(%d, i);
printf(is a even no);
i++;
}
else
{
printf(%d, i);
printf(is a odd no);
i++;
}
}
getch();
or
ld
}
5.6 INPUT AND OUTPUT:
dowhile
i.
Input
Actual output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Test cases:
Actual output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Remarks
Success
TU
Input
2
JN
Input
2
Actual output
-2 is an even number
Remarks
fail
Expected output
123456789122222222213
Actual output
234567891222222215
34
Remarks
fail
www.alljntuworld.in
JNTU World
whiledo
ii.
Input
Actual output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Test cases:
Test case no: 1
Test case name: Positive values within range
Expected output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Actual output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Remarks
success
or
ld
Input
2
Actual output
-2 is an even number
Remarks
fail
Input
-2
Actual output
234567891222222215
if else
TU
iii.
Expected output
123456789122222222213
Input
2
Actual output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
JN
Test cases:
Test case no: 1
Test case name: Positive values within range
Input
2
Expected output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Actual output
2 is even number
3 is odd number
4 is even number
5 is odd number
6 is even number
Remarks
success
35
Remarks
fail
www.alljntuworld.in
JNTU World
Input
Expected output
Actual output
Remarks
-2
-2 is even number
-3 is odd number
-4 is even number
-5 is odd number
-6 is even number
-2 is an even number
fail
Actual output
234567891222222215
Actual output
Enter Ur choice: 3
Enter a, b Values: 3, 2
Enter Ur choice: 4
Enter a, b Values: 3, 2
Enter Ur choice: 2
Enter a, b Values: 3, 2
Test cases:
Test case no: 1
Test case name: Positive values within range
Expected output
Actual output
Enter Ur choice: 4
Enter a, b Values: 3, 2
TU
Input
Enter Ur choice: 1
Enter a, b Values: 3, 2
Enter Ur choice: 2
Enter a, b Values: 3, 2
Enter Ur choice: 3
Enter a, b Values: 3, 2
Remarks
Success
JN
Expected output
44444444444444
Actual output
-2
Remarks
fail
Remarks
fail
or
ld
iv.
Expected output
123456789122222222213
Expected output
error
Actual output
Remarks
fail
36
www.alljntuworld.in
JNTU World
v.
for loop
Expected output
Actual output
Remarks
0 is even number
1 is odd number
2 is even number
0 is even number
1 is odd number
2 is even number
success
Input
-2
Expected output
0 is even number
-1 is odd number
-2 is even number
or
ld
Remarks
fail
5.7
Actual output
234567891222222215
LAB ASSIGNMENT:
TU
5.8
Expected output
123456789122222222213
Input
1234567891222222222222
1
2
3
4
5
JN
5.9
1
2
3
4
5
37
Remarks
fail
www.alljntuworld.in
JNTU World
EXPERIMENT 5(B)
5.1
OBJECTIVE:
*Write a program in C language to demonstrate the working of palindrome using dowhile.
5.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
5.3 PROGRAM LOGIC:
or
ld
1. do while
rem=temp%10.
reverse=reverse*10+rem.
temp/=10.
PROCEDURE:
a.
Create : Open editor vi x.c write a program after that press ESC and: wq for save and Quit.
b.
c.
Execute: . / a.out.
TU
5.4
If reverse equal to n
Print n is a palindrome.
else
print n is not a palindrome.
#include <stdio.h>
int main()
{
JN
if(reverse==n)
printf("%d is a palindrome.",n);
else
printf("%d is not a palindrome.",n);
return 0;
}
38
www.alljntuworld.in
JNTU World
dowhile
Input
Actual output
323
323is palindrome
Test cases:
Test case no: 1
Test case name: Positive values within range
Expected output
232 is palindrome
Actual output
232 is palindrome
Remarks
Success
or
ld
Input
232
Actual output
-323 palindrome
Remarks
fail
JN
TU
Input
-323
39
www.alljntuworld.in
JNTU World
EXPERIMENT 6(A)
6.1
OBJECTIVE:
A program written in c language for matrix multiplication fails Introspect the causes for its failure and
write down the possible reasons for its failure.
RESOURCES:
1.
2.
6.4
PROGRAM LOGIC :
1.
Read the no. of rows (r1) and cols (c1) of a matrix a[3][3].
2.
Read the no. of rows (r2) and cols. (c2) of matrix b[3][3].
3.
4.
If c1=r2 then read the elements into both the matrices a and b.
5.
6.
7.
PROCEDURE:
a.
b.
c.
Create : Open editor vi x.c write a program after that press ESC and: wq for save and Quit.
Compile: gcc x.c.
Execute: . / a.out.
SOURCE CODE :
#include<stdio.h>
#include<conio.h>
void main()
{
JN
TU
6.5
or
ld
6.3
Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
6.2
int a[3][3],b[3][3],c[3][3],i,j,k,m,n,p,q;
clrscr();
printf(Enter 1st matrix no.of rows & cols);
scanf(%d%d,&m,&n);
printf( Enter 2nd matrix no.of rows & cols) ;
scanf(%d%d,&p,&q);
printf("\n enter the matrix elements");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&a[i][j]);
}
}
printf("\n a matrix is\n");
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
printf("%d\t",a[i][j]);
}
printf("\n");
}
40
www.alljntuworld.in
JNTU World
for(i=0;i<p;i++)
{
for(j=0;j<q;j++)
{
scanf("%d\t",&b[i][j]);
}
}
printf("\n b matrix is\n");
or
ld
for(i=0;i<p;i++)
{
for(j=0;j<q;j++)
{
printf("%d\t",b[i][j]);
}
printf("\n");
}
for(i=0;i<m;i++)
{
for(j=0;j<q;j++)
{
c[i][j]=0;
for(k=0;k<n;k++)
{
c[i][j]=c[i][j]+a[i][k]*b[k][j];
}
}
}
TU
for(i=0;i<m;i++)
{
for(j=0;j<q;j++)
{
printf("%d\t",c[i][j]);
}
printf("\n");
}
getch();
JN
6.6
Actual Output
3 3 3
3 3 3
3 3 3
Test cases:
Test case no: 1
Test case name: Equal no. of rows & cols
41
www.alljntuworld.in
JNTU World
Input
Matrix1 rows & cols= 3 3
Matrix2 rows & cols= 3 3
Matrix1:
111
111
111
Matrix2:
111
111
111
Expected output
Actual output
Remarks
3 3 3
3 3 3
3 3 3
3 3 3
3 3 3
3 3 3
Success
Input
Matrix1 rows & cols= 2 2
Matrix2 rows & cols= 3 2
or
ld
Actual output
Expected output
Remarks
fail
1234567891 2222222222
2234567891 2222222221
Actual output
234567891 22222221533
213242424 56456475457
6.7
What is an array?
State 2-dimensional and multi-dimensional array syntax?
Difference between array and structure?
What is a structure and specify its syntax?
Write syntax for multidimensional arrays?
TU
1.
2.
3.
4.
5.
6.8
LAB ASSIGNMENT:
JN
1.
2.
3.
4.
5.
6.9
1.
2.
3.
4.
5.
42
Remarks
fail
www.alljntuworld.in
JNTU World
EXPERIMENT 6(B)
6.1
OBJECTIVE:
*Write a Program in C Language to demonstrate the working of addition of diagonal elements
in a matrix.
6.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server,
Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space,
Win 95/98/NT/2K/XP, IE 5.
6.3
PROGRAM LOGIC :
or
ld
1. Read the no. of rows (r1) and cols (c1) of a matrix a[3][3].
a. Read the values of matrix
2. Initialize a resultant matrix c[3][3] with 0.
3. For loop i=0 to m
4. For loop j=0 to n
5. If I == j
6. Calculate sum = sum + a[i][j] .
7. Display the resultant matrix.
6.4
PROCEDURE:
SOURCE CODE :
#include<stdio.h>
int main()
{
int a[10][10],i,j,sum=0,m,n;
printf("\nEnter the row and column of matrix: ");
scanf("%d %d",&m,&n);
printf("\nEnter the elements of matrix: ");
TU
6.5
1. Create : Open editor vi x.c write a program after that press ESC and: wq for save and Quit.
2. Compile: gcc x.c.
3. Execute: . / a.out.
for(i=0;i<m;i++)
for(j=0;j<n;j++)
scanf("%d",&a[i][j]);
JN
for(i=0;i<m;i++)
{
printf("\n");
for(j=0;j<m;j++)
{
printf("%d\t",a[i][j]);
}
}
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(i==j)
sum=sum+a[i][j];
}
}
43
www.alljntuworld.in
JNTU World
printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);
return 0; }
Actual Output
Input
Matrix1 rows & cols= 3 3
Expected output
Actual output
Remarks
Success
Matrix1:
111
121
113
Matrix2:
111
111
111
or
ld
Test cases:
Test case no: 1
Test case name: Equal no. of rows & cols
Actual output
JN
TU
Input
Matrix1 rows & cols= 2 3
44
Remarks
fail
www.alljntuworld.in
JNTU World
EXPERIMENT 7 (A)
7.1
OBJECTIVE:
Take any system (e.g. ATM system) and study its system specifications and report the various bugs.
RESOURCES:
1.
2.
7.4
LAB ASSIGNMENT:
TU
7.5
or
ld
7.3
Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
7.2
1
2
3
4
5
1
2
3
4
5
JN
7.6
45
www.alljntuworld.in
JNTU World
EXPERIMENT 7 (B)
7.1
OBJECTIVE:
Write the test cases for any known application (e.g. Banking application)
7.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
7.4
or
ld
7.3
TU
1.
2.
3.
4.
5.
7.5
LAB ASSIGNMENT:
JN
1.
2.
3.
4.
5.
7.6
46
www.alljntuworld.in
JNTU World
EXPERIMENT 7 (C)
7. 1
OBJECTIVE:
*Write down the system specifications for elevator system
7.2
RESOURCES:
1.
2.
7.3
Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
or
ld
In this section the requirements of the system are described from the perspective of:
1. Passengers
Passenger requirements can be considered from the perspective of the various passenger devices:
1. Hall buttons and lamps
2. Hall displays
3. Cab displays
4. Cab floor buttons
5. Elevator doors
6. Cab door control
7. Cab overloaded alarm
The requirements on each of these devices is described below.
Hall buttons and lamps
On every floor there are hall buttons used to request either up or down service (i.e., to make a hall
call). When a hall button is pushed, all associated lamps (one lamp with each button, one or more
buttons per floor) will light if there are any elevators in service.
JN
TU
www.alljntuworld.in
JNTU World
An audible alarm sounds if more than the maximum allowable weight enters the cab. The alarm
continues to sound until the weight is reduced below the maximum allowable.
Elevator ride
The elevator ride is perceived by the passengers as rapid and with smooth acceleration and
deceleration. The car stops at a floor without overshooting or undershooting and without jerking.
Operations staff requirements
Building operations staff requires two types of functions or services from the 2001 System. They are
1. the display and control functions
2. the efficiency/safety operations functions
Display and control functions
or
ld
Display and control functions are provided at the operations staff console. The operations console
consists of a touch-screen terminal controlled by its own microprocessor. The requirements for the
microcode in this processor are described in Software Requirements Specification for the 2001
Operations Staff Console.
Efficiency/safety operations functions
All aspects of system control and operation are under continuous surveillance of the system software.
In particular,
1. Whenever a hall call is made, an estimated time to respond to that call is computed for each car in
the system. The calculation includes current car position, load, status, calculated run time, and number
of scheduled stops.
2. For each service response, the flight path of the car is calculated to minimize flight time within the
constraints of acceleration and jerk required for passenger comfort.
JN
TU
3. The software also continually monitors all input signals for any indication of system malfunction.
When these are detected, the software will put the car under manual control (exercised from the
operations staff console) at the next stop.
48
www.alljntuworld.in
JNTU World
EXPERIMENT 8 (A)
8.1
OBJECTIVE:
Create a test plan document for any application (e.g. Library Management System)
8.2
RESOURCES:
1.
2.
8.3
Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
1.
2.
or
ld
The Library Management System is an online application for assisting a librarian imagining book
library in a University. The system would provide basic set of features to add/update clients, add/update
books, search for books, and manage check-in / checkout processes. Our test group tested the system
based on the requirement specification .This test report is the result for testing in the LMS. It mainly
focuses on two problems
1. GUI test
Pass criteria: librarians could use this GUI to interface with the backend library database
without any difficulties.
2. Database test
Pass criteria: Results of all basic and advanced operations are normal (refer to section 4)
JN
TU
8.4
8.5
LAB ASSIGNMENT:
1. Design test plan document for e-library?
2. Design test plan document for credit card processing?
3. Design test plan document for ticket vending machine?
49
www.alljntuworld.in
JNTU World
4. Design test plan document for Airport check-in business model?
5. Design test plan document for school management system?
8.6
JN
TU
or
ld
1.
2.
3.
4.
5.
50
www.alljntuworld.in
JNTU World
EXPERIMENT 8 (B)
8.1
OBJECTIVE:
Study of Any Testing Tool( Win Runner)
8.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
8.3
or
ld
Win Runner is a program that is responsible for the automated testing of software.
Win Runner is a Mercury Interactive enterprise functional testing tool for Microsoft windows
applications.
Reduced testing time Consistent test procedures ensure process repeatability and resource
independence. Eliminates errors of manual testing. Reduces QA cost Upfront cost of automated
testing is easily recovered over the life-time of the product .Improved testing productivity test suites
can be run earlier and more often Proof of adequate testing .For doing Tedious work test team
members can focus on quality areas.
Win Runner Uses:
TU
1. With Win Runner sophisticated automated tests can be created and run on an application. A series of
wizards will be provided to the user, and these wizards can create tests in an automated manner.
2. Another impressive aspect of Win Runner is the ability to record various interactions, and transform
them into scripts. Win Runner is designed for testing graphical user interfaces. When the user make
an interaction with the GUI, this interaction can be recorded. Re-cording the interactions allows
determining various bugs that need to be fixed. When the test is completed, Win Runner will provide
with detailed information regarding the results. It will show the errors that were found, and it will
also give important information about them. The good news about these tests is that they can be
reused many times.
3. Win Runner will test the computer program in a way that is very similar to normal user interactions.
This is important, because it ensures a high level of accuracy and realism. Even if an engineer is not
physically present, the Recover manager will troubleshoot any problems that may occur, and this
will allow the tests to be completed without errors.
4. The Recover Manager is a powerful tool that can assist users with various scenarios. This is
important, especially when important data needs to be recovered.
5. The goal of Win Runner is to make sure business processes are properly carried out. Win Runner
uses TSL, or Test Script Language.
JN
Context Sensitive mode records your actions on the application being tested in terms of the GUI objects
you select (such as windows, lists, and buttons), while ignoring the physical location of the object on the
screen. Every time you perform an operation on the application being tested, a TSL statement describing
the object selected and the action performed is generated in the test script. As you record, Win Runner
writes a unique description of each selected object to a GUI map.
The GUI map consists of files maintained separately from your test scripts. If the user interface of your
application changes, you have to update only the GUI map, instead of hundreds of tests. This allows you
to easily reuse your Context Sensitive test scripts on future versions of your application.
To run a test, you simply play back the test script. Win Runner emulates a user by moving the mouse
pointer over your application, selecting objects, and entering keyboard input. Win Runner reads the
object descriptions in the GUI map and then searches in the application being tested for objects
matching these descriptions. It can locate objects in a window even if their placement has changed.
51
www.alljntuworld.in
JNTU World
Analog
Analog mode records mouse clicks, keyboard input, and the exact x and y coordinates traveled by the
mouse. When the test is run, Win Runner retraces the mouse tracks. Use Analog mode when exact
mouse coordinates are important to your test, such as when testing a drawing application.
The Win Runner Testing Process
Testing with Win Runner involves six main stages:
or
ld
Next is creation of test scripts by recording, programming, or a combination of both. While recording
tests, insert checkpoints where we want to check the response of the application being tested. We can
insert checkpoints that check GUI objects, bitmaps, and databases. During this process, Win Runner
captures data and saves it as expected results the expected response of the application being tested.
3. Debug Tests
Run tests in Debug mode to make sure they run smoothly. One can set breakpoints, monitor variables,
and control how tests are run to identify and isolate defects. Test results are saved in the debug folder,
which can be discarded once debugging is finished. When Win Runner runs a test, it checks each script
line for basic syntax errors, like incorrect syntax or missing elements in If, While, Switch, and For
statements. We can use the Syntax Check options (Tools >Syntax Check) to check for these types of
syntax errors before running your test.
TU
4. Run Tests
Tests can be run in Verify mode to test the application. Each time Win Runner encounters a checkpoint
in the test script, it compares the current data of the application being tested to the expected data
captured earlier. If any mismatches are found, Win Runner captures them as actual results.
5. View Results
JN
Following each test run, Win Runner displays the results in a report. The report details all the major
events that occurred during the run, such as checkpoints, error messages, system messages, or user
messages. If mismatches are detected at checkpoints during the test run, we can view the expected
results and the actual results from the Test Results window. In cases of bitmap mismatches, one can also
view a bitmap that displays only the difference between the expected and actual results.
We can view results in the standard Win Runner report view or in the Unified report view. The Win
Runner report view displays the test results in a Windows style viewer. The Unified report view displays
the results in an HTML style viewer (identical to the style used for Quick Test Professional test results).
6. Report Defects
If a test run fails due to a defect in the application being tested, one can report information about the
defect directly from the Test Results window .This information is sent via e-mail to the quality
assurance manager, who tracks the defect until it is fixed.
Using Win runner Window
Before you begin creating tests, you should familiarize yourself with the Win Runner main window.
52
www.alljntuworld.in
JNTU World
Standard Toolbar
or
ld
The main Win Runner window contains the following key elements:
1. Win Runner title bar
2. Menu bar, with drop-down menus of Win Runner commands
3. Standard toolbar, with buttons of commands commonly used when running a test
4. User toolbar, with commands commonly used while creating a test
5. Status bar, with information on the current command, the line number of the insertion point and the
name of the current results folder
6. The Standard toolbar provides easy access to frequently performed tasks, such as opening,
executing, and saving tests, and viewing test results.
The User toolbar displays the tools you frequently use to create test scripts. By default, the User toolbar
is hidden. To display the User toolbar, choose Window>User Toolbar. When you create tests, you can
minimize the Win Runner window and work exclusively from the toolbar. The User toolbar is
customizable. You choose to add or remove buttons using the Settings > Customize User Toolbar menu
option. When you reopen Win Runner, the User toolbar appears as it was when you last closed it. The
commands on the Standard toolbar and the User toolbar are described in detail in subsequent lessons.
Note that you can also execute many commands using soft keys. Sof keys are keyboard shortcuts for
carrying out menu commands. You can configure the softkey combinations for your keyboard using the
Softkey Configuration utility in your Win Runner program group. For more information, see the Win
Runner at a Glance chapter in your Win Runner Users Guide. Now that you are familiar with the main
Win Runner window, take a few minutes to explore these window components before proceeding to the
next lesson.
TU
JN
Experiment-1
Create a script by recording in Context Sensitive mode that tests the process of opening an order in the
Flight Reservation application. You will create the script
1. Start Win Runner.
If Win Runner is not already open, choose Programs > Win Runner > Win Runner on the Start
menu.
2. Open a new test.
If the Welcome window is open, click the New Test button. Otherwise, choose File > New. A new
test window opens in Win Runner.
3. Start the Flight Reservation application and log in.
Choose Programs > Win Runner > Sample Applications > Flight 1A on the Start menu. In the
Login window, type your name and the password mercury, and click OK. The name you type must
53
www.alljntuworld.in
JNTU World
be at least four characters long. Position the Flight Reservation application and Win Runner so that
they are both clearly visible on your desktop.
or
ld
Experiment -2
TU
Synchronizing test
When you run tests, your application may not always respond to input with the same speed. For
example, it might take a few seconds:
1. To retrieve information from a database
2. For a window to pop up
3. For a progress bar to reach 100%
4. For a status message to appear
JN
Win Runner waits a set time interval for an application to respond to input. The default wait interval is
up to 10 seconds. If the application responds slowly during a test run, Win Runners default wait time
may not be sufficient, and the test run may unexpectedly fail. If you discover a synchronization problem
between the test and your application, you can either:
Increase the default time that Win Runner waits. To do so, you change the value of the Timeout for
Checkpoints and CS Statements option in the Run tab of the General Options dialog box(Settings >
General Options). This method affects all your tests and slows down many other Context Sensitive
operations. Insert a synchronization point into the test script at the exact point where the problem occurs.
A synchronization point tells Win Runner to pause the test run in order to wait for a specified response
in the application. This is the recommended method for synchronizing a test with your application. In
the following exercises you will:
1.
2.
3.
4.
5.
Create a test that opens a new order in the Flight Reservation application and inserts the order into
the database
Change the synchronization settings
Identify a synchronization problem
Synchronize the test
Run the synchronized test
Input:
Creating a Test
54
www.alljntuworld.in
JNTU World
In this first exercise you will create a test that opens a new order in the Flight Reservation application
and inserts the order into a database.
Start Win Runner and open a new test.
If Win Runner is not already open, choose Programs > Win Runner > Win Runner on the Start
menu. If the Welcome window is open, click the New Test button. Otherwise, choose File > New.
A new test window opens.
2.
3.
4.
5.
6.
7.
8.
Stop recording.
Choose Create > Stop Recording or click the Stop button.
9.
or
ld
1.
TU
Output: Win Runner Test Results window is open and displays the test results.
Conclusion: Importance of Synchronizing test is cleared and test results are also seen.
Experiment -3
Aim: When working with an application, you can determine whether it is functioning properly
according to the behavior of its GUI objects.
JN
Input:
Adding GUI Checkpoints to a Test Script
In this exercise you will check that objects in the Flight Reservation Open Order dialog box function
properly when you open an existing order.
d. Start Win Runner and open a new test.
If Win Runner is not already open, choose Programs > Win Runner > Win Runner on the Start
menu. If the Welcome window is open, click the New Test button. Otherwise, choose File > New.
A new test window opens.
www.alljntuworld.in
JNTU World
6.
8.
Create another GUI checkpoint for the Order No. check box.
Choose Create > GUI Checkpoint > For Object/Window or click the GUI Checkpoint for
Object/Window button on the User toolbar. Use the pointer to single click the Order No. check box.
Win Runner immediately inserts a checkpoint into the test script (an obj_check_gui statement) that
checks the default check State. (Use this shortcut when you want to use only the default check for
an object.) This check captures the current state (on) of the check box and stores it as expected
results.
9.
or
ld
7.
10. Click OK in the Open Order dialog box to open the order.
TU
JN
In Running the Test you will now run the lesson5 test in order to verify that the test runs smoothly.
1. Make sure that the Flight Reservation application is open on your desktop.
2. In Win Runner, check that Verify mode is selected in the Standard toolbar.
3. Choose Run from Top.
Choose Run > Run from Top, or click the Run from Top button. The Run Test dialog box opens.
Accept the default test run name res1. Make sure that the Display test results at end of run
check box is selected.
4.
5.
www.alljntuworld.in
JNTU World
success).Double click an end GUI checkpoint event to view detailed results of that GUI
checkpoint. The GUI Checkpoint Results dialog box opens. Select Customer Name to display the
dialog box as follows:
Output: Win Runner Test Results window is open and displays the test results.
Conclusion: Explains how to check the behavior of GUI objects and shows you how to create a test
that checks GUI objects.
Experiment -4
Aim: Purpose of these exercises to study a bitmap checkpoint compares captured bitmap images pixel
by pixel.
Input:
Checking Bitmap Objects
or
ld
TU
JN
13. Insert another bitmap checkpoint that checks the Agent Signature box.
57
www.alljntuworld.in
JNTU World
Choose Create > Bitmap Checkpoint > For Object/Window or click the Bitmap Checkpoint for
Object/Window button on the User toolbar.Use the pointer to click the Agent Signature box. Win
Runner captures a bitmap and inserts an obj_check_bitmap statement into the test script.
14. Click the Cancel button on the Fax Order dialog box.
15. Stop recording.
Choose Create > Stop Recording or click the Stop button.
16. Save the test.
Choose File > Save or click the Save button. Save the test as lesson6 in a convenient location on
your hard drive. Click Save to close the Save Test dialog box.
or
ld
17. If you are working in the Global GUI Map File mode, save the new objects to the GUI map.
Choose Tools > GUI Map Editor. Choose View > GUI Files. Choose File >Save. Click Yes or OK
to add the new object or new window to your GUI map. Choose File > Exit to close the GUI Map
Editor.
Output:
Conclusion: Bitmap checkpoint compares captured bitmap images captured bitmap images pixel by
pixel.
Checking Bitmaps
Experiment -5
TU
Aim: Purpose of these exercises to study shows you how to use the Data Driver Wizard to create a data
driven test
Input:
JN
www.alljntuworld.in
JNTU World
Accept the default table variable name, table. At the beginning of a data driven test, the Excel data
table you wish to use is assigned as the value of the table variable. Throughout the script, only the
table variable name is used. This makes it easy for you to assign a different data table to the script at
a later time without making changes throughout the script.
or
ld
Output:
Review the results.
TU
When the test run is completed, the test results appear in the Win Runner Test Results window. Note
that the tl_step event is listed five times and that the details for each iteration include the actual number
of tickets, price and total cost that was checked.
Conclusion: Use Data Driver Wizard to create a data driven test.
Experiment -6
JN
Aim: Explains how the GUI map enables you to continue using your existing test scripts after the user
interface changes in your application.
Input:
2.
www.alljntuworld.in
JNTU World
Choose Tools > GUI Map Editor. The GUI Map Editor opens. Make sure that View > GUI Map is
selected. The Windows/Object list displays the current contents of the GUI Map. (If you are
working in the GUI Map File per Test Mode, the GUI Map Editor will contain fewer objects than as
shown below).The GUI Map Editor displays the object names in a tree. Preceding each name is an
icon representing the objects type. The objects are grouped according to the window in which they
are located. You can double click a window icon to collapse or expand the view of its objects.
Find the Insert Order button in the tree.
In the GUI Map Editor, choose View > Collapse Objects Tree to view only the window titles.(If
you are working in the GUI Map File per Test Mode, the GUI Map Editor will contain fewer
objects than as shown below. Double click the Flight Reservation window to view its objects. If
necessary, scroll down the alphabetical object list until you locate the Insert Order button.
4.
5.
or
ld
3.
6.
TU
Note: If you are working in the GUI Map File per Test mode, skip this exercise,since new objects are
saved in your tests GUI map automatically when you save your test.If your application contains new
objects, you can add them to the GUI map without running the RapidTest Script wizard again. You
simply use the Learn button in the GUI Map Editor to learn descriptions of the objects. You can learn
the description of a single object or all the objects in a window. In this exercise you will add the objects
in the Flight Reservation Login window to the GUI map.
Open the Flight Reservation Login window.
Choose Programs > Win Runner > Sample Applications > Flight 1A on the
Start menu.
2.
JN
1.
4.
www.alljntuworld.in
JNTU World
update the GUI map so that your tests can run smoothly. It prompts you to point to the object in our
application, determines why it could not find the object, and then offers a solution. In most cases the
Run wizard will automatically modify the object description in the GUI map or add a new object
description.
For example, suppose you run a test that clicks the Insert Order button in the Flight Reservation
window: button_press ("Insert Order");If the Insert Order button is changed to an Insert button, the Run
wizard opens during a test run and describes the problem.You click the hand button in the wizard and
click the Insert button in the Flight Reservation program. The Run wizard then offers a solution: When
you click OK, Win Runner automatically modifies the objects physical description in the GUI map and
then resumes the test run.
If you would like to see for yourself how the Run wizard works:
TU
or
ld
8.4
1.
2.
3.
4.
5.
LAB ASSIGNMENT:
JN
8.5
1.
2.
3.
4.
5.
8.6
61
www.alljntuworld.in
JNTU World
EXPERIMENT -8 (C )
8.1
OBJECTIVE:
* Create a test plan document for cellular phone.
8.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
TEST PLAN DOCUMENT FOR CELLULAR PHONE :
or
ld
8.3
There are broadly 2 kinds of testing that take place on mobile devices:
1. Hardware testing:
The device including the internal processors, internal hardware, screen sizes, resolution, space or
memory, camera, radio, Bluetooth, WIFI etc. This is sometimes referred to as, simple Mobile Testing.
2. Software or Application testing:
The applications that work on mobile devices and their functionality is tested. It is called the Mobile
Application Testing to differentiate it from the earlier method. Even in the mobile applications, there are
few basic differences that are important to understand:
a) Native apps: A native application is created for use on a platform like mobile and tablets.
b) Mobile web apps are server-side apps to access website/s on mobile using different browsers like
chrome, Firefox by connecting to a mobile network or wireless network like WIFI.
c) Hybrid apps are combinations of native app and web app. They run on devices or offline and are
written using web technologies like HTML5 and CSS.
TU
JN
Native apps have single platform affinity while mobile web apps have cross platform affinity.
Native apps are written in platforms like SDKs while Mobile web apps are written with web
technologies like html, css, asp.net, java, php.
For a native app, installation is required but for mobile web apps, no installation is required.
Native app can be updated from play store or app store while mobile web apps are centralized updates.
Many native app dont require Internet connection but for mobile web apps its a must.
Native app works faster when compared to mobile web apps.
Native apps are installed from app stores like Google play store or app store where mobile web are
websites and are only accessible through Internet.
62
www.alljntuworld.in
JNTU World
EXPERIMENT 9 (A)
9.1
OBJECTIVE:
Study of any web testing tool (e.g. Selenium)
9.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
9.3
or
ld
1. Selenium is a robust set of tools that supports rapid development of test automation for web-based
applications. Selenium provides a rich set of testing functions specifically geared to the needs of
testing of a web application. These operations are highly flexible, allowing many options for
locating UI elements and comparing expected test results against actual application behavior.
2. One of Seleniums key features is the support for executing ones tests on multiple browser
platforms.
3. Selenium Components
4. Selenium is composed of three major tools. Each one has a specific role in aiding the development
of web application test automation.
Selenium-Grid
Selenium-RC provides an API (Application Programming Interface) and library for each of its supported
languages: HTML, Java, C#, Perl, PHP, Python, and Ruby. This ability to use Selenium-RC with a high
level programming language to develop test cases also allows the automated testing to be integrated with
a projects automated build environment.
TU
Selenium-Grid allows the Selenium-RC solution to scale for large test suites or test suites that must be
run in multiple environments. With Selenium-Grid, multiple instances of Selenium-RC are running on
various operating system and browser configurations; Each of these when launching register with a hub.
When tests are sent to the hub they are then redirected to an available Selenium-RC, which will launch
the browser and run the test. This allows for running tests in parallel, with the entire test suite
theoretically taking only as long to run as the longest individual test.
1. Tests developed on Firefox via Selenium-IDE can be executed on any other supported browser via a
simple Selenium-RC command line.
2. Selenium-RC server can start any executable, but depending on browser security set-tings there may be
technical limitations that would limit certain features.
JN
www.alljntuworld.in
JNTU World
<body>
<table>
<tr><td><b>Suite Of Tests</b></td></tr>
<tr><td><a href=./Login.html>Login</a></td></tr>
<tr><td><a href=./SearchValues.html>Test Searching for Values</a></td></tr>
<tr><td><a href=./SaveValues.html>Test Save</a></td></tr>
</table></body>
</html>
A file similar to this would allow running the tests all at once, one after another, from the Selenium-IDE.
6.
7.
8.
9.
9.4
1.
2.
3.
4.
5.
or
ld
Test suites can also be maintained when using Selenium-RC. This is done via programming and can be
done a number of ways. Commonly Junit is used to maintain a test suite if one is using Selenium-RC with
Java. Additionally, if C# is the chosen language, Nunit could be employed. If using an interpreted
language like Python with Selenium-RC than some simple programming would be involved in setting up
a test suite. Since the whole reason for using Sel-RC is to make use of programming logic for your testing
this usually isnt a problem.
TU
1.
2.
3.
4.
5.
9.5
LAB ASSIGNMENT:
JN
1.
2.
3.
4.
5.
9.6
64
www.alljntuworld.in
JNTU World
EXPERIMENT 9 (B)
9.1
OBJECTIVE:
Study of Any Bug Tracking Tool (Bugzilla)
9.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
9.3
or
ld
Bugzilla is a Bug Tracking System that can efficiently keep track of outstanding bugs in a product.
Multiple users can access this database and query, add and manage these bugs. Bugzilla essentially
comes to the rescue of a group of people working together on a product as it enables them to view current
bugs and make contributions to resolve issues. Its basic repository nature works out better than the
mailing list concept and an organized database is always easier to work with.
1. Bugzilla is very adaptable to various situations. Known uses currently include IT support queues,
Systems Administration deployment management, chip design and development problem tracking (both
pre-and-post fabrication), and software and hardware bug tracking for luminaries such as Redhat, NASA,
Linux-Mandrake, and VA Systems. Combined with systems such as CVS, Bugzilla provides a powerful,
easy to use solution to configuration management and replication problems.
2. Bugzilla can dramatically increase the productivity and accountability of individual employees by
providing a documented workflow and positive feedback for good performance. Ultimately, Bugzilla puts
the power in users hands to improve value to business while providing a usable framework for natural
attention to detail and knowledge store to flourish.
TU
Bugzilla is organised in the form of bug reports that give all the information needed about a particular
bug. A bug report would consist of the following fields.
Product>Component
Assigned to
Status (New, Assigned, Fixed etc)
Summary
Bug priority
Bug severity (blocker, trivial etc)
Bug reporter
JN
1.
2.
3.
4.
5.
6.
7.
Using Bugzilla:
Bugzilla usage involves the following activities
Setting Parameters and Default Preferences
1.
2.
3.
4.
5.
6.
7.
www.alljntuworld.in
JNTU World
6.
7.
8.
9.
or
ld
1.
2.
3.
4.
5.
Before entering bugs, make sure we add some new users. We can enter users very easily, with a
minimum of information. Bugzilla uses the email address as the user ID, because users are frequently
notified when a bug is entered, either because they entered the bug, because the bug is assigned to them,
or because theyve chosen to track bugs in a certain project.
TU
JN
Impersonating a User
Impersonating a user is possible, though rare, that we may need to file or manage a bug in an area that is
the responsibility of another user when that user is not available. Perhaps the user is on vacation, or is
temporarily assigned to another project. We can impersonate the user to create or manage bugs that
belong to that user.
Adding Products
Well add a product in Bugzilla for every product we are developing. To start with, when we first login to
Bugzilla, well find a test product called TestProduct. We should delete this and create a new product.
To add a product:
1. At the bottom of the page, click Products.
2. In the TestProduct listing, click Delete.
3. Click Yes, Delete.
4. Now click Add a product.
66
www.alljntuworld.in
5.
6.
7.
JNTU World
Enter a product name, such as Widget Design Kit.
Enter a description.
Click Add. A message appears that youll need to add at least one component.
1.
2.
3.
4.
or
ld
To add a component:
Click the link add at least one component in the message that appears after creating a new product.
Enter the Component name.
Enter a Description.
Enter a default assignee. Use one of the users weve created. Remember to enter the as signee in the
form of an email address.
5. Click Add.
6. To add more components, click the name of product in the message that reads edit other components
of product <product name>.
Modifying Default Field Values
Once we begin to enter new bugs, well see a number of drop down lists containing default values. Some
of these may work just fine for our product. Others may not. We can modify the values of these fields,
adding new values and deleting old ones. Lets take a look at the OS category.
To modify default field values:
TU
1. At the bottom of the page, in the Edit section, click Field Values.
2. Click the link, in this case OS, for the field we want to edit. The OS field contains a list of operating
system names. We are going to add browsers to this list. In reality, we might create a custom field
instead, but for the sake of this example, just add them to the OS list.
3. Click Add a value. In the Value field, enter IE7.Click Add.
4. Click Add a value again.
5. In the Value field, enter Firefox 3.
6. Click Add.
7. Where it reads Add other values for the op_sys field, click op_sys.
8. This redisplays the table. We should now see the two new entries at the top of the table. These
values will also appear in the OS drop down list when we create a new bug.
JN
67
www.alljntuworld.in
JNTU World
or
ld
1. Click Reports.
2. Click the Search link on the page, not the one in the top menu. This opens a page titled Find a Specific
Bug.
3. Select the Status.
4. Select the Product.
5. Enter a word that might be in the title of the bug.
6. Click Search. If any bugs meet the criteria that we have entered, Bugzilla displays them in a list
summary.
7. Click the ID number link to view the full bug report.
Modifying Bug Reports
Suppose we want to change the status of the bug. Weve reviewed it and have determined that it belongs
to one of the users we have created earlier.
9.4
LAB ASSIGNMENT:
TU
1.
2.
3.
4.
5.
JN
9.6
68
www.alljntuworld.in
JNTU World
EXPERIMENT 9 (C)
9.1
OBJECTIVE:
Study of Any Test Management Tool ( Test Director)
9.2
RESOURCES:
1.
2.
9.3
Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
or
ld
Test Director is a global test management solution which provides communication, organization,
documentation and structure to the testing project.
Test Director offers an organized framework for testing applications before they are deployed. Since test
plans evolve with new or modified application requirements, you need a central data repository for
organizing and managing the testing process. TestDirector guides through the requirements
specification, test planning, test execution, and defect tracking phases of the testing process.The Test
Director testing process includes four phases:
Specifying Requirements
Requirements are linked to tests and defects to provide complete traceability and aid the decisionmaking process
See what percent of requirements are covered by tests
Each requirement in the tree is described in detail, and can include any relevant attachments. The
QA tester assigns the requirement a priority level which is taken into consideration when the test
team creates the test plan
Import from Microsoft Word or third party RM tool
TU
1.
2.
3.
4.
JN
Planning Tests
1. The Test Plan Manager enables to divide application according to functionality. Application can
be divided into units, or subjects, by creating a test plan tree.
2. Define subjects according to:
Application functionality-such as editing, file operations, and reporting
Type of testing-such as functional, user interface, performance, and load
3. As the tests are also linked to defects, this helps ensure compliance with testing requirements
throughout the testing process.
Running Tests
As the application constantly changes, using test lab, run manual and automated tests in the project in
order to locate defects and assess quality.
1.
By creating test sets and choosing which tests to include in each set, test suite can be created. A test
set is a group of tests in a Test Director project database designed to achieve specific testing goals.
2.
Tests can be run manually or scheduled to run automatically based on application dependencies.
69
www.alljntuworld.in
JNTU World
Tracking Defects
Locating and repairing application defects efficiently is essential to the testing process. Defects can be
detected and added during all stages of the testing process. In this phase you per-form the following
tasks:
1.
This tool features a sophisticated mechanism for tracking software defects, enabling Testing Team
and the project Team to monitor defects closely from initial detection until resolution
2.
By linking Test Director to e-mail system, defect tracking information can be shared by all
Development and Management Teams, Testing and Wipro Software Quality Assurance personnel
9.5
LAB ASSIGNMENT:
1.
2.
3.
4.
5.
JN
TU
9.6
9.4
or
ld
Server System configuration : 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL
Server Client System con-figuration : 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5 , Netscape 4.7
70
www.alljntuworld.in
JNTU World
EXPERIMENT 9 (D)
9.1
OBJECTIVE:
*Compare different testing tools
9. 2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
9.3
TestingWhiz
or
ld
HP QTP 10
No
Programming knowledge
required?
Yes
Learning curve to be
productive
3-4 months
Requires
Extensive
Coding
Database Support
Requires
Extensive
Coding
Yes
2-3 months
Object Repository
Official term is
Window
declarations. They
can be edited
directly from the
Editor
TU
Non Editable
Termed as
Testcase. Each
Termed as
Testcase has block Automation
of coding
Script
statements.
Test Case
1 week
VBScript
Complex code
required
Not Available
Yes
Yes
Results Reporting
Basic
Reporting
Defect Management
In Built Defect
Not Available
JN
Language Support
71
www.alljntuworld.in
JNTU World
Integration
Reporting
OS Platform Support
Windows Only
Test Management
Integration
Scheduled execution
No
Price
Free (GPL 2,
Apache 2)
JN
TU
or
ld
72
www.alljntuworld.in
JNTU World
EXPERIMENT 10 (A)
10.1
OBJECTIVE:
Study of any open source testing tool (Test Link)
10.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win 2K
server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
10.3
or
ld
Test link is an open source test management tool. It enables creation and organization of test cases and
helps manage into test plan. Allows execution of test cases from test link itself. One can easily track test
results dynamically, generate reports, generate test metrics, prioritize test cases and assign unfinished
tasks. Its a web based tool with GUI, which provides an ease to develop test cases, organize test cases into
test plans, execute these test cases and generate re-ports. Test link exposes API, written in PHP, can help
generate quality assurance dashboards. The functions like AddTestCase ToTestPlan,
Assign Requirements,Create TestCase etc. helps create and organize test cases per test plan. Functions like
GetTestCasesForTestPlan, GetLastExecutionResult allows one to create quality assurance dashboard.
TestLink enables easily to create and manage Test cases as well as organize them into Test plans. These
Test plans allow team members to execute Test cases and track test results dynamically, generate reports,
trace software requirements, prioritize and assign tasks. Read more about implemented features and try
demo pages.
Overall structure
There are three cornerstones: Product, Test Plan and User. All other data are relations or attributes for
this base. First, definition of a couple of terms that are used throughout the documentation.
Products and Test Plans
TU
1. Product: A Product is something that will exist forever in TestLink. Products will under-go many
different versions throughout their lifetimes. Product includes Test Specification with Test Cases and
should be sorted via Keywords.
2. Test Plan: Test Plans are created when youd like to execute test cases. Test plans can be made up of
the test cases of one or many Products. Test Plan includes Builds, Test Case Suite and Test Results.
3. User: An User has a Role, that defines available TestLink features.
Test Case Categorization
JN
TestLink breaks down the test case structure into three levels Components, Categories, and test cases.
These levels are persisted throughout the application.
1.
2.
3.
4.
5.
6.
Component: Components are the parents of Categories. Each Component can have many
Categories.
Category: Categories are the parents of test cases. Each Category can have many test cases.
Test Case: Test cases are the fundamental piece of TestLink.
Test Specification: All Components, Categories and test cases within Product.
Test Case Suite: All Components, Categories and test cases within Test Plan.
Test Specification
Creating Test Cases
Tester must follow this structure: Component, Category and test case. At first you create Component(s) for
your Product. Component includes Categories. Category has the similar meaning but is second level of
Test Specification and includes just Test Cases. User can also copy or move Test Cases.
73
www.alljntuworld.in
JNTU World
or
ld
Requirements relation
Test cases could be related with software/system requirements as n to n. The functionality must be enabled
for a Product. User can assign Test Cases and Requirements via link Assign Requirements in the main
screen.
Test Plans
Test plan contains name, description, collection a chosen test cases, builds, test results, milestones, tester
assignment and priority definition.
Creating a new Test Plan
Test Plans may be deleted from the Create test plan page (link Create Test Plan) by users with lead
privileges. Test plans are the basis for test case execution. Test plans are made up of test cases imported
from Products at a specific point of time. Test plans can only be created by users with lead privileges. Test
plans may be created from other test plans. This allows users to create test plans from test cases that at a
desired point in time. This may be necessary when creating a test plan for a patch. In order for a user to see
a test plan they must have the proper rights. Rights may be assigned (by leads) in the define User/Project
Rights section. This is an important thing to remember when users tell you they cant see the project they
are working on.
TU
Test Execution
JN
Test Status
Execution is the process of assigning a result (pass, fail, blocked) to a test case for a specific build.
Blocked test case is not possible to test for some reason (e.g. a problem in configuration disallows to run
a tested functionality).
Insert Test results
Test Results screen is shown via click on an appropriate Component, Category or test case in navigation
pane. The title shows the current build and owner. The colored bar indicate status of the test case. Yellow
box includes test scenario of the test case.
Updated Test Cases: If users have the proper rights they can go to the Update modified testcase page
through the link on main page. It is not necessary for users to update test cases if there has been a change
(newer version or deleted).
74
www.alljntuworld.in
JNTU World
Advantages:
1.
2.
3.
4.
5.
6.
Easy in tracking test cases(search with keyword, test case id, version etc)
We can add our custom fields to test cases.
Allocating the work either test case creation/execution any kind of documents is easy
when a test cases is updated the previous version also can be tracked
We can generate results build wise
Test plans are created for builds and work allocations can be done.
Report, is one of the awesome functionality present in the Test link, it generates reports in desired format
like HTML/ CSV /Excel and we can create graphs too. And the above all is done on the privileges based
which is an art of the testlink and i liked this feature much
Example of TestLink workflow:
LAB ASSIGNMENT:
TU
10.5
10.4
or
ld
1. Administrator create a Product Fast Food and a user Adam with rights leader and Bela with rights
Senior tester.
2. Adam imports Software Requirements and for part of these requirements generates empty Test cases.
3. Bela describe test scenario of these Test cases that are organized according to Components and
Categories.
4. Adam creates Keyword: Regression and assigns this keyword to ten of these test cases.
5. Adam creates a Test Plan Fish & Chips, Build Fish 0.1 and add Test Cases with keywords Regression.
6. Adam and Bela execute and record the testing with result: 5 passed, 1 failed and 4 are blocked.
7. Developers make a new build Fish 0.2 and Bela tests the failed and blocked test cases only.
Exceptionally all these five Test cases passed.
8. Manager would like to see results. Administrator explains him that he can create account himself on
the login page. Manager does it. He has Guestrights and could see results and Test cases. He can see
that everything passed in overall report and problems in build Fish 0.1 in a report for particular Build.
But he can change nothing.
1.
2.
3.
4.
5.
1.
2.
3.
4.
5.
JN
10.6
75
www.alljntuworld.in
JNTU World
OBJECTIVE
* Demonstrate how test link is different from test director.
10.2
RESOURCES:
1. Server System configuration: 128 MB of RAM , 500 MB of free disk space, Win NT server, Win
2K server, IIS 5.0, MS Access/Oracle 7.x,8.x,9/MS SQL.
2. Server Client System configuration: 64 MB of RAM , 10 MB of free disk space, Win
95/98/NT/2K/XP, IE 5.
STUDY OF TEST LINK AND TEST DIRECTOR :
Test director
or
ld
10.3
It is a Global Test Management tool, the industrys first global test management solution. It helps
organizations deploy high-quality applications more quickly and effectively. It has four modules:
- Requirements
- Test Plan
- Test Lab
- Defects
Test link
JN
TU
1.
2.
3.
4.
5.
6.
7.
8.
These modules are seamlessly integrated, allowing for a smooth information flow between various
testing stages. The completely Web-enabled TestDirector supports high levels of communication and
collaboration among distributed testing teams, driving a more effective, efficient global applicationtesting process.
76
www.alljntuworld.in
JNTU World
VIVA QUESTIONS
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
TU
16.
or
ld
2.
Define Object Oriented Analysis? Object Oriented Analysis (OOA) is a method of analysis that examines
requirements from the perspective of the classes and objects found in the vocabulary of the problem
domain?
What is meant by Object Oriented? Object Oriented means we organize the software as a collection of
discrete objects that incorporate both data structure and behavior?
Write the characteristics of an object. Identity, classification, polymorphism, and inheritance?
What is a class? A class is a set of objects that share a common structure and a common behavior?
Name two types of object diagram. Class diagram and instance diagram?
What is an attribute? Give example. An attribute is a data value held by the objects in a class .Example:
name, age and weight are attributes of Person class?
What is multiple inheritance? When one class inherits its state (attributes) and behavior from more than one
super class, it is referred to as multiple inheritance?
What is dynamic binding? The process of determining (dynamically) at run time which functions to invoke
is termed dynamic binding?
What is static binding? The process of determining at compile time which functions to invoke is termed
static binding?
Write the four quality measures for software development? Correspondence, correctness, verification, and
validation?
What is object persistence? Objects have life time. They are created and can exist for a period of time. A
file or a database can provide support for objects having a longer life time longer than the duration of the
process for which they were created. This characteristic is called object persistence?
What is polymorphism? Give an example. Polymorphism means that the same operation may behave
differently on different classes. Ex. Move operation. (Behave differently on the window class and chess
Piece class)?
What is cardinality? Cardinality specifies how many instances of one class may relate to a single instance of
an associated class?
What is a formal class or abstract class? Formal or abstract classes have no instances but define the
common behaviors that can be inherited by more specific classes?
What is a meta-class? A metaclass is a class about a class. They are normally used to provide instance
variables and operations?
Define Encapsulation? Encapsulation is the process of compartmentalizing the elements of an abstraction
that constitute its structure and behavior?
What is the need of an Object diagram? An object diagram is used to show the existence of objects and
their relationships in the logical design of a system?
What is state of an object? The state of an object encompasses all of the properties of the object plus the
current values of each of these properties?
Write some applications of object model? They include Air traffic control, Animation, Avionics, Database,
Robotics etc.?
Define Concurrency. Concurrency is the property that distinguishes an active object from one that is not
active?
Name the three general approaches for classification? They are Classical categorization, Conceptual
clustering and Prototype theory?
Name the five levels of process maturity in OOD? They are Initial, Repeatable, Defined, Managed and
Optimized?
Name the two process used by Grady BOOCH in his OO software development? They are Macro and
Micro development process?
Name the four steps in Micro development process? They are Identify the classes and objects, Give
semantics to the classes, Identify class and object relationships, Identify class and object interfaces and
implementation?
What are the steps followed in macro development process? Conceptualization, analysis and development
of the model, Design or create the system architecture, evolution or implementation, maintenance?
1.
17.
18.
19.
JN
20.
21.
22.
23.
24.
25.
77
www.alljntuworld.in
JNTU World
JN
TU
or
ld
26. Short notes on OMT functional model. OMT functional model uses dataflow diagram that shows the flow
of data between different processes in a business .Data flow diagrams use four primary symbols. They are
process, data flow, data store, external entity?
27. Names the diagrams of Booch Methodology. Class diagram, object diagram, state transition diagram,
module diagram, process diagram, interaction diagram?
28. Name the models in objectory. Use case model, domain object model, analysis object model,
implementation model, test model?
29. What is unified modeling language? Unified modeling language is a language for specifying, conducting,
visualizing and documenting the software system and its components?
30. Name the available layers of the three layered approach to software development. Business layer, access
layer, view (user interface) layer?
31. Write the two responsibilities of access layer? Translate Request, Translate result?
32. Write any two advantages of modeling? The main reason for modeling is the reduction of complexity. The
cost of the modeling analysis is much lower than the cost of similar experimentation conducted with real
time?
33. What is Objectory? Objectory is a method or object-oriented development with the specific aim to fit the
development of large, real-time systems?
34. Define Static model? It can be viewed as a snapshot of a systems parameters at rest or a specific point in
time. They are needed to represent the structural or static aspect of a system?
35. Define Dynamic model? It can be viewed as a collection of procedures or behaviors that taken together
reflect the behavior of a system over time. Dynamic modeling is the most useful during the design and
implementation phases of the system development?
36. What is an association? Give one example. An association is the relationship between the classes. Ex
person and company are the classes, works-for is the association name. Works- for?
37. What is a qualifier? Give one example. A qualifier is an association attribute. The qualifier rectangle is part
of the association path, not part of the class. Give one example?
38. What is a method? A method is the implementation of an operation for a class?
39. What is a use case? Use cases are scenarios for understanding system requirements. A use case is an
interaction between users and a system?
40. Name the three types of relationships in a use case diagram. Communication, Uses, extends?
41. Write the two types of Implementation diagram? Component diagram, deployment diagram?
42. What is an activity? An activity is a set of operations that is executing during the entire period an object is
in a state?
43. Write the guidelines for preparing the Documentation. Common cover, 80-20 rule, Familiar vocabulary,
makes the document as short as possible, organize the document. Bank Account Person Company Person?
44. Name the types of relationships among the objects. Association, super-sub structure, aggregation?
45. Write the guidelines for identifying the associations a dependency between two or more classes may be
association A reference from one class to another is an association?
46. Name the two properties of a part of relationship. Transitivity, Anti symmetry?
47. Write the Guidelines for identifying part of relationship. Assembly, container, collection member?
48. Define Prototype? A prototype is a version of a software product developed in the early stages of the
products life cycle for specific, experimental purposes. A prototype enables you to fully understand how
easy or difficult it will be to implement some of the features of the system?
49. Define pattern mining? The process of looking for patterns to document is called pattern mining sometimes
called reverse architecture?
50. Define anti-patterns? An anti-pattern represents a worst practice while a pattern represents a best Practice.
Anti-patterns come in two varieties. Those describing a bad solution to a problem that resulted in a bad
situation and those describing how to get out of a bad situation?
51. Define patterns template? Every pattern must be expressed in the form of a rule which is called as a
Template. It should establish a relationship between a context, a system of forces which arises in the
context, and a configuration?
52. Define proto-patterns? If something appears to have all the requisite pattern components, it should not be
considered a pattern until it has been verified to be a recurring phenomenon .A proto-pattern is the pattern
in waiting which is not yet known to recur?
53. Name the two categories of Quality assurance testing. Error based testing, scenario based testing?
78
www.alljntuworld.in
JNTU World
JN
TU
or
ld
54. Define debugging. Debugging is the process of finding out where something went wrong and correcting the
code to eliminate the errors or bugs that cause unexpected results?
55. Write the two types of path testing. Statement testing coverage and Branch testing coverage?
56. What is a meta-model? A meta-model is a model of modeling elements. UML graphic notations can be
used not only to describe the systems components but also to describe a model itself?
57. Define a Framework? A frame work is a collection of classes that provide a set of services for a particular
domain?
58. Write the differences between design patterns and frameworks Design patterns are more abstract than
frameworks. Design patterns are smaller architectural elements than frameworks. Design patterns are less
specialized than frameworks?
59. Define SQA? SQA stands for Software Quality Assurance. This is the measure of assuring the quality of
the software products. The major activity done here is testing. The assurance process also follows the
quality model called the QAIMODEL (Quality Assurance Institute Model)?
60. What is V Testing? V testing stands for Verification and Validation testing?
61. What is a quality? Quality refers to the ability of products to meet the users needs and expectations?
62. Name the two issues for software quality. Validation or user satisfaction, and verification or quality
assurance?
63. Define user satisfaction testing. User satisfaction testing is the process of quantifying the usability test with
some measurable attributes of the test, such as functionality, cost or ease of use?
64. Define test plan. A test plan is developed to detect and identify potential problems before delivering the
software to its users?
65. Write the objectives of testing. Testing is the process of executing a program with the intent of finding
errors. A good test case is the one that has a high probability of detecting an as yet undiscovered error. A
successful test case is the one that detects an as yet undiscovered error?
66. What is cyclomatic complexity? Cyclomatic complexity is software metric that provides a quantitative
measure of the logical complexity of a program. The value computed for cyclomatic complexity defines the
number of independent paths in the basis set of program?
67. Define corollary? Corollary is a proposition that follows from an axiom or another proposition that has been
proven?
68. Name the two axioms.
Axiom1: The independence axiom. Maintain the independence of components.
Axiom2: The information axiom. Minimize the information content of the design.
69. Define coupling. Coupling is a measure of the strength of association established by a connection from one
object or software component to another. Coupling is a binary relationship. Coupling deals with interactions
between objects or software components?
70. Name the two types of coupling in the object oriented design. Interaction coupling and inheritance
coupling?
71. Define cohesion. Cohesion means the interactions within a single object or software component?
72. Name the types of attributes. Single value attributes, Multiplicity or multivalued attributes, Reference to
another object or instance connection?
73. Write the syntax for presenting the attribute that was suggested by UML. visibility name : type_expression
= initial _value Where visibility is one of the following
+ public visibility
# protected visibility
private visibility
type_expression - type of an attribute
Initial_value is a language dependent expression for the initial value of a newly created object.
74. Write the syntax for presenting the operation that was suggested by UML
visibility name : (parameter_list): return _type_expression
Where visibility is one of the following
+ public visibility
# protected visibility
private visibility
parameter- is a list of parameters.
79
www.alljntuworld.in
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
TU
89.
or
ld
77.
75.
76.
JNTU World
90.
91.
92.
93.
JN
94.
95.
96.
97.
98.
80
www.alljntuworld.in
JNTU World
JN
TU
or
ld
99. Define forward engineering and revere engineering. Forward engineering means creating a relational
schema from an existing object model Reverse engineering means creating an object model from an
existing relational database layout (schema)?
100. What is Object request broker (ORB)? Object request broker (ORB) Middle ware that implements a
communication channel through which applications can access object interfaces and request data and
services?
101. What is distributed database? In distributed database, different portions of the database reside on different
nodes (computers) and disk drives in the network. Each portions of the database is managed by a server, a
process responsible for controlling access and retrieval of data from the database portion?
102. What does RAD stands for? Rapid application development (RAD) is a set of tools and techniques that can
be used to build an application faster than typically possible with traditional methods?
103. What are the traditional software development methodologies? Most traditional development
methodologies are either algorithm centric or data centric?
81