Testing Types

Dynamic Testing Methodologies 

Some of dynamic testing methodologies include:

   1. Unit Testing

   2. Integration Testing

More…

By Pavandeep Puddupakkam on September 12, 2008 | Software Testing, Testing Types | A comment?

Dynamic Testing 

Dynamic testing (or dynamic analysis) is a term used in software engineering to describe the testing of the dynamic behavior of code. That is, dynamic analysis refers to the examination of the physical response from the system to variables that are not constant and change with time. In dynamic testing the software must actually be compiled and run; this is in contrast to static testing. Dynamic testing is the validation portion of Verification and Validation.

By Pavandeep Puddupakkam on | Software Testing, Testing Types | A comment?
Tags:

Static Code Analysis 

Static code analysis is the analysis of computer software that is performed without actually executing programs built from that software (analysis performed on executing programs is known as dynamic analysis). In most cases the analysis is performed on some version of the source code and in the other cases some form of the object code. The term is usually applied to the analysis performed by an automated tool, with human analysis being called program understanding or program comprehension.

More…

By Pavandeep Puddupakkam on | Software Testing, Testing Types | A comment?

Static Testing 

Static testing is a form of software testing where the software isn't actually used. This is in contrast to Dynamic testing. It is generally not detailed testing, but checks mainly for the sanity of the code, algorithm, or document. It is primarily syntax checking of the code or and manually reading of the code or document to find errors. This type of testing can be used by the developer who wrote the code, in isolation. Code reviews, inspections and walkthroughs are also used.

More…