0% found this document useful (0 votes)
38 views4 pages

Research Paper On FT

This document discusses software testing strategies and tools. It makes three main points: 1. Software testing plays a significant role in enterprise growth by evaluating programs and ensuring they meet requirements. Testing approaches include black box, white box, and grey box techniques. 2. Key aspects of testability include operability, observability, controllability, decomposability, simplicity, stability, and understandability. These facilitate more efficient and effective testing. 3. Major testing types are correctness testing and functional testing. Correctness testing verifies correct execution versus wrong behavior. Functional testing examines if a system meets specifications by providing inputs and examining outputs.

Uploaded by

rachna rathore
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views4 pages

Research Paper On FT

This document discusses software testing strategies and tools. It makes three main points: 1. Software testing plays a significant role in enterprise growth by evaluating programs and ensuring they meet requirements. Testing approaches include black box, white box, and grey box techniques. 2. Key aspects of testability include operability, observability, controllability, decomposability, simplicity, stability, and understandability. These facilitate more efficient and effective testing. 3. Major testing types are correctness testing and functional testing. Correctness testing verifies correct execution versus wrong behavior. Functional testing examines if a system meets specifications by providing inputs and examining outputs.

Uploaded by

rachna rathore
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

International Journal of Scientific and Research Publications, Volume 3, Issue 3, March 2013 1

ISSN 2250-3153

Study of Testing Strategies and availableTools


Shruti N. Pardeshi

Student
Medicaps Institute of Science and Technology, Indore

Abstract- Software testing is a process used for evaluating an  Testing is basically the process to identify the correctness and
attributes or capability of program and make sure that it meets completeness of the software.[3][4]
the requirements. Now-a-days testing becomes an very important
activity in terms of exposure as well in terms of security, Software Testability Checklist
performance and usability. If we consider hardware and software  Operability - the better it works the more efficiently it can be
licenses, the testing is too expensive task for user. For the tested.
automation of Software testing, several tools are available in the  Observabilty - what you see is what you test.
markets that are described further in paper.  Controllability - the better software can be controlled the more
testing can be automated and optimized.
Index Terms-Software Testing, Correctness Testing,Box  Decomposability - by controlling the scope of testing, the more
Testing, White Box Testing, Grey Box Testing quickly problems can be isolated and retested intelligently.
 Simplicity - the less there is to test, the more quickly we can
test.
I. INTRODUCTION  Stability - the fewer the changes, the fewer the disruptions to
testing.
S oftware testing plays a very significant role in the growth of
an enterprise. Over time, the software testing function has
become a challenging activity for enterprises due to increasing
 Understandability - the more information known, the smarter
the testing.
technological complexities, software sourcing challenges

Typically, software testing is done either internally within the III. TYPES OF TESTING TECHNIQUES
organization, or then is outsourced to software services The importance of software testing to software quality cannot be
providers. Testing follows its own evolution cycle. This offered overemphasized. Once source code has been generated, software
customers a dynamically scalable and economic framework must be tested to allow errors to be identified And removed
which enabled them to outsource their testing requirements. before delivery to the customer. While it is not possible to
remove every error in a large software package, the software
engineer's goal is to remove as many as possible early in the
II. TESTING software development cycle. It is important to remember that
Softwaretesting is activities conducted for finding errors in testing can only find errors. It cannot prove that a program is bug
software. It also verifies and validate whether the program is free.
working correctly with no bugs or not. It analyzes the software
for finding bugs. Software testing is not only finds the bugs but A. Correctness Testing
also confirms that either the software is working according to the The most essential purpose of testing is correctness which is also
requirement specifications or not. the minimum requirement of software. Correctness testing tells
Software testing will consist of number of steps which is the right behavior or execution of the system from the wrong
designed to make sure that computer code does what it was one.
designed to do.[1][2] Either the White box or Black box point of view can be taken in
testing software as a tester may or may not know the details of
Software Testing Objectives : the software module which is currently under testing.
Main goal of testing can be quality assurance, reliability
estimation, validation or verification. The other objective of
testing includes : INPUT White box
 Testing is the process of executing a program with the intent
of finding errors.
 A good test case is one with a high probability of finding an Correctness Grey box
Testing Grey box
testing
as-yet undiscovered error.  testing
 A successful test is one that discovers an as-yet-undiscovered 
error. Black box
 The better the software works the more efficiently it can be
tested.
 Better the software can be controlled more the testing can be Represent categories of correctness Testing
automated and optimized.

www.ijsrp.org
International Journal of Scientific and Research Publications, Volume 3, Issue 3, March 2013 2
ISSN 2250-3153

Black Box Testing This is a type of black box testing that is based on the
specifications of the software that is to be tested. The application
Basically Black box testing is an integral part of Correctness is tested by providing input and then the results are examined
testing but its ideas are not limited to correctness testing only. that need to conform to the functionality it was intended for.
Correctness testing is a method which is classified by purpose in Functional Testing of the software is conducted on a complete,
software testing. Black box testing is based on the analysis of the integrated system to evaluate the system's compliance with its
specifications of a piece of software without reference to its specified requirements. There are five steps that are involved
internal working. when testing an application for functionality.
The goal is to test how well the component conforms to the
published requirement for the component. Black box testing only  Step I - The determination of the functionality that the
examines the fundamental aspect of the system. It makes sure intended application is meant to perform.
that input is properly accepted and output is correctly produced.  Step II - The creation of test data based on the
The black box testing techniques where user involvement is specifications of the application.
required are user acceptance testing, alpha testing and beta  Step III - The output based on the test data and the
testing.[4] specifications of the application.
PROCESS
OUTPUT  Step IV - The writing of Test Scenarios and the
INPUT  ANALYZE execution of test cases.
SYSTEM
ONLY  Steps V - The comparison of actual and expected results
FUNDAMENTA
L ASPECTS
based on the executed test cases. [9]
The categories under functional testing are as follows

Represent working process of Black Box Testing 1.) Unit testing –


Testing of individual software components or modules.
White box Testing Typically done by the programmer and not by testers , as it
White box testing based on an analysis of internal requires detailed knowledge of the internal program design and
working and structure of a piece of software. White box testing is code. may require developing test driver modules or test
the process of giving the input to the system and checking how harnesses.
the system processes that input to generate the required output. Unit Testingis done at the lowest level. It tests the basic unit of
It is necessary for a tester to have the full knowledge of software, which is the smallest testable piece of software, and is
the source code. White box testing is applicable at integration, often called unit, module, or component interchangeably.
unit and system levels of the software testing process. In white
box testing one can be sure that all parts through the test objects 2.) Integration testing –
are properly executed. [4][6]
Testing of integrated modules to verify combined functionality
PROCESS OUTPUT after integration. Modules are typically code modules, individual
INPUT applications, client and server applications on a network, etc.
ANALYZE This type of testing is especially relevant to client/server and
SYSTEM INTERNAL
WORKING distributed systems.
Integration Testingis performed when two or more tested units
Represent working process of White Box Testing are combined into a larger structure.The test is often done on
both the interfaces between the components and the larger
structure being Constructed, if its quality property cannot be
Grey Box Testing assessed from its components.
Grey box testing techniques combined the testing
methodology of white box and black box. Grey box 3.) System Testing –
testing technique is used for testing a piece of software against its It tends to affirm the end-to-end quality of the entire system.
specifications but using some knowledge of System test is often based on the functional/requirement
its internal working as well. [7] specification of the system. Non-functional quality attributes,
Grey box testing may also include reverse engineering such as Reliability, security, and maintainability, are also
to determine, for instance, boundary values or error messages. checked.[8]
Grey box testing is a process which involves testing software
while already having some knowledge of its underline code or 4.) Acceptance Testing
logic. The understanding of internals of the program in grey box It is done when the completed system is handed over from the
testing is more than black box testing, but less than clear box developers to the customers or users. The purpose of acceptance
testing. [2] testing is rather to give confidence that the system is working
B. Functional Testing than to find errors.
a.) Alpha Testing

www.ijsrp.org
International Journal of Scientific and Research Publications, Volume 3, Issue 3, March 2013 3
ISSN 2250-3153

This test is the first stage of testing and will be performed System is stressed beyond its specifications to check how and
amongst the teams. Unit testing, integration testing and system when it fails. Performed under heavy load like putting large
testing when combined are known as alpha testing. During this number beyond storage capacity, complex database queries,
phase Spelling Mistakes, Broken Links, Cloudy Directions will continuous input to system or database load.
be tested in the application.
Stress testing is a testing, which is conducted to evaluate a
system or component at or beyond the limits of its specified
b.) Beta testing – requirements to determine the load under which it fails and how.
Beta Testing typically done by end-users or others. Final testing Stress testing also determines the behavior of the system as user
before releasing application for commercial purpose. This test is base increases. [5][4]
performed after Alpha testing has been successfully performed.
In beta testing a sample of the intended audience tests the b.) Load Testing
application. Beta testing is also known as pre-release testing. It is an industry term for the effort of performance testing. The
Beta test versions of software are ideally distributed to a wide main feature of the load testing is to determine whether the given
audience on the Web, partly to give the program a "real-world" system is able to handle the anticipated no. of users or not. This
test and partly to provide a preview of the next release. can be done by making the virtual user to exhibit as real user so
that it will be easy to perform load testing.The main objective of
C. Non-Functional Testing load testing is to check whether the system can perform well for
specified user or not.
Non-functional testing of Software involves testing the Software Two ways for implementing load testing are
from the requirements which are non-functional in nature related 1. Manual Testing: It is not a very practical option as it is
but important as well, such as performance, security, user very iterative in nature and it involves.It will Measure
interface etc. Some of the important and commonly used non- response time and Compare results
functional testing types are mentioned as follows. 2. Automated Testing: As compared to manual load testing
the automated load testing tools provide more efficient
1.) Performance Testing and cost effective solutions. Because with automated
Term often used interchangeably with ‘stress’ and ‘load’ testing. load testing, tools test can easily be rerun any number of
To check whether system meets performance requirements. Used times and decreases the chances of human error during
different performance and load tools to do this. testing. [5]
'Performance Testing' involve all the phases as the mainstream
testing life cycle as an independent discipline which involve 2.) Reliability Testing
strategy such as plan, design, execution, analysis and reporting. Reliability Testing is very important, as it discover all the
This testing is conducted to evaluate the compliance of a system failures of a system and removes them before the
or component with specified performance requirement. [4] system is deployed. Reliability testing is related to many aspects
Evaluation of a performance of any software system includes of software in which testing process is included;
resource usage, throughput and stimulus response time. this testing process is an effective sampling method to measure
software reliability.[4][7]
Goals of performance testing: Robustness testing and stress testing are the variances of
 Observing the system resources which are under various loads. reliability testing. By Robustness we mean how software
 Measuring response time of end to end transactions. component works under stressful environmental conditions.
 Measurement of the delay of network between client and Robustness testing only watches the robustness problem such as
server. [5] machine crashes, abnormal terminations etc. Robustness testing
is very portable and scalable. [7]
Mistakes which happen during performance testing:
 Ignoring of errors in input. 3.) Security Testing
 Analysis is too complex. Security Testing makes sure that only the authorized person can
 Erroneous analysis. access the program and only the authorized personnel can access
 Level of details is inappropriate. the functions available to their security level. Security testing is
 Ignore significant factors. very helpful for the tester for finding and fixing of problems. It
 Incorrect Performance matrix. ensures that the system will run for a long time without any
 Important parameter is overlooked. major problem. It also ensures that the systems used by any
 Approach is not systematic. [5] organization are secured from any unauthorized attack.[3]

Typically to debug applications, developers would execute their 4.) Portability Testing
applications using different execution stream. Which are
completely exercised the applications in an attempt to find errors. Portability testing includes the testing of Software with intend
Performance testing is categorized in two types shown below. that it should be re-useable and can be moved from another
a.) Stress Testing Software as well. Following are the strategies that can be used
for Portability testing.
Transferred installed Software from one computer to another.

www.ijsrp.org
International Journal of Scientific and Research Publications, Volume 3, Issue 3, March 2013 4
ISSN 2250-3153

Following are some pre-conditions for Portability testing: Performs database and data
 Software should be designed and coded, keeping in mind SQL DB cube
16
Portability Requirements. Validator verification and validation and
 Unit testing has been performed on the associated works with SQL
components. Open source and works on
17 UtPLSQL
 Integration testing has been performed. ORACLE PL/SQL
 Test environment has been established. [6]
Table: Description of various Testing tools
IV. TESTING TOOLS
V. CONCLUSION
As the software industry grows. It becomes more competitive
and advanced for businesses to produce such good quality In this paper I discussed about the various strategies used for
software. With this reliability and deadlines should also met. testing along with its tools available for testing. Testing is very
Manual testing takes too long time and it can waste the lot of vast and hot topic in the field of research .Here I described the
time.With the aid of testing tools this can increase efficiency and necessity of Testing with tools.
get the deadlines met.Testing tool is a form of automated testing. In future I will include more number of testing techniques in
It is basically program to do various testing tasks. support of different fields where testing is used.
Now-a-days testing is done with the help of various
testing tools. The testing tools are categorized according to its REFERENCES
software specification. After studying all the testing tools I got
[1] Introduction to software testing available at
all types of software, languages and tools through which the /www.onestoptetsing.com/introduction/
software can be developed.[9]
This categorization of testing tools according to its software [2] Software testing techniques available at
specification is shown in the table below: http://pesona.mmu.edu.my/~wruslan/SE3/Readings/GB1/pdf/ch14-GB1

[3] Different forms of software testing techniques for finding errors.


Sr. Testing paper by Mohd.Ehmer Khan
Specification
No Tools
[4]Software testing glossary available at
Bound http://www.aptest.com/glossary.html#performance testing
1 C,C++,.NET,ASP,ASP.NET
Checker
[5] Software Testing by Cognizant Technology Solution.
2 AQTime VB,VC++,C++,GCC,Visual
DevAdvanta [6] Software testing tutorials by tutorials.com
3 C#,.NET
ges
[7] Paper on Software testing by Jiantao Pan
4 GJ-Coverage J2ME,J2SE,J2EE,HTML [8] Software Testing Techniques –Technology maturation and research strategy
5 ABBOT JAVA GUI’s Paper by Lu Luo.

6 Cactus Server-Side java code [9] Research on testing tools available at


ADA,ALGOL,C/C++,COBOL, http://research.cs.queensu.ca/~shepard/testing.dir
LDRA
7 FORTRON,
Testbed
PASCAL,PL/M,PL/I
CITRIX,JAVA,.NET,ORACL Shruti N Pardeshi was born in Jalgaon in 1988.She
E,SAP, EPIC received her B.E. degree in Computer from North
8 AppLoader
ECLIPSYS,MCKESSEN,MED Maharashtra University,Jalgaon in 2009 and she is
ITECH pursuing her M.Tech in Information Technology
POWER BUILDER, from RGPV University,Bhopal.
9 SQA Suite Email address :[email protected]
DEVELOPER/2000
SQA
10 TestFoundati PEOPLESOFT
on
11 TCMON ADA83
12 TestWorks F77,ADA,C,C++
HTML,XHTML, CSS, LINK,
CSE-HTML
13 Spelling &
Validator
Accessibility checker
14 LinkScan Dead link Detector
RDBMS including
15 Datatect ALE,SYBASE,
SQLSERVER,INFORMIX

www.ijsrp.org

You might also like