Testing methods in Software Development

by MANIMUTHUPANDI 2014-05-31 17:55:17


function White-Box testing()
{
Tests internal structures or workings of a program
}
function Black-box testing()
{
Testes without any knowledge of internal implementation.
}
function Visual testing()
{
This examine what was happening at the point of software failure
}
function Grey-box testing()
{
Tests the internal data structures and algorithms
}
function Unit testing()
{
Tests that verify the functionality of a specific section of code
}
function Component testing()
{
Unit testing();
}
function Integration testing()
{
Tests all the modules tested at the component testing with the software
}
function Component interface testing()
{
Tests handling of data passed between various components
}
function System testing()
{
Tests a completely integrated system to verify that it meets its requirements
}
function Acceptance testing()
{
At last the system is delivered to the user for Acceptance testing.
}
953
like
0
dislike
0
mail
flag

You must LOGIN to add comments