Functional testing
   HOME

TheInfoList



OR:

Functional testing is a
quality assurance Quality assurance (QA) is the term used in both manufacturing and service industries to describe the systematic efforts taken to ensure that the product(s) delivered to customer(s) meet with the contractual and other agreed upon performance, design ...
(QA) processPrasad, Dr. K.V.K.K. (2008) ''ISTQB Certification Study Guide'', Wiley, , p. vi and a type of black-box testing that bases its test cases on the specifications of the software component under test. Functions are tested by feeding them input and examining the output, and internal program structure is rarely considered (unlike white-box testing).Kaner, Falk, Nguyen. ''Testing Computer Software''. Wiley Computer Publishing, 1999, p. 42. . Functional testing is conducted to evaluate the compliance of a system or component with specified functional requirements. Functional testing usually describes ''what'' the system does. Since functional testing is a type of black-box testing, the software's functionality can be tested without knowing the internal workings of the software. This means that testers do not need to know programming languages or how the software has been implemented. This, in turn, could lead to reduced developer bias (or
confirmation bias Confirmation bias is the tendency to search for, interpret, favor, and recall information in a way that confirms or supports one's prior beliefs or values. People display this bias when they select information that supports their views, ignoring ...
) in testing since the tester has not been involved in the software's development. Functional testing does not imply that you are testing a function (method) of your module or class. Functional testing tests a slice of functionality of the whole system. Functional testing differs from
system testing System testing is testing conducted on a complete integrated system to evaluate the system's compliance with its specified requirements. System testing takes, as its input, all of the integrated components that have passed integration testing. ...
in that functional testing "'' verifies'' a program by checking it against ... design document(s) or specification(s)", while system testing "'' validate ' a program by checking it against the published user or system requirements." The concept of incorporating testing earlier in the delivery cycle is not restricted to functional testing.


Types

Functional testing has many types: * Smoke testing * Sanity testing * Regression testing *
Usability testing Usability testing is a technique used in user-centered interaction design to evaluate a product by testing it on users. This can be seen as an irreplaceable usability practice, since it gives direct input on how real users use the system. It is ...


Six Steps

Functional testing typically involves six steps # The identification of functions that the software is expected to perform # The creation of input data based on the function's specifications # The determination of output based on the function's specifications # The execution of the test case # The comparison of actual and expected outputs # To check whether the application works as per the customer need.


See also

* * * * * * * * * * *


References

{{DEFAULTSORT:Functional Testing Software testing