What is Basis Path Testing?
A white box test case design technique that uses the algorithmic flow of the program to design tests. Read more »
A white box test case design technique that uses the algorithmic flow of the program to design tests. Read more »
A sequence of one or more consecutive, executable statements containing no branches. Read more »
A metalanguage used to formally describe the syntax of a language. Read more »
Testing employing software tools which execute tests without manual intervention. Can be applied in GUI, performance, API, etc. testing. The use of software to control... Read more »
The use of software tools, such as automated testing tools, to improve software quality. Read more »
A formalized set of software calls and routines that can be referenced by an application program in order to access supporting system or network services. Read more »
A specification defining requirements for portability of applications in binary forms across defferent system platforms and environments. Read more »
Testing practice for projects using agile methodologies, treating development as the customer of testing and emphasizing a test-first design paradigm. Read more »
A testing phase where the tester tries to ‘break’ the system by randomly trying the system’s functionality. Can include negative testing as well. Read more »
A using declaration makes it possible to use a name from a namespace without the scope operator. Read more »
Multiple providers of libraries might use common global identifiers causing a name collision when an application tries to link with two or more such libraries. The... Read more »
The term alignment primarily means the tendency of an address pointer value to be a multiple of some power of two. So a pointer with two byte alignment has a zero... Read more »
When derived class overrides the base class method by redefining the same function, then if client wants to access redefined the method from derived class through... Read more »
a) Using const protects you against programming errors that inadvertently alter data. b) Using const allows function to process both const and non-const actual arguments,... Read more »
Method of passing arguments to a function which takes parameter of type reference. for example: void swap( int & x, int & y ) { int temp = x; x = y; y... Read more »