Types of Testing

Tests are categorized in a variety of ways based on purpose and scope. This page collects the various categories of tests that we engage with.

  • Acceptance Testing – testing that verifies the system satisfies the requirements of the customer
  • Functional Testing – testing that verifies the system is behaving correctly
  • Fuzz Testing – supplying your system with invalid, malformed, and unexpected inputs to find defects
  • Integration Testing – testing two or more software units in combination to ensure behavioral correctness of the integrated components.
  • Manufacturing Testing – tests that are intended for use on the manufacturing line to ensure that units have been properly built and are suitable for sale
  • Performance Testing – tests that are intended to stress performance attributes like speed, responsiveness, stability, scalability, and reliability under particular workloads.
  • Regression Testing – testing that ensures that new changes or updates to the software do not break existing functionality
    • Regression test suites often comprise the various unit and integration tests for the system
  • Unit Testing – testing individual software components in isolation to ensure correctness
    • A “unit” could be a function, a file, a complete library, etc.
Note

These are not distinct categories. There is often overlap among testing types. The same test might fall into different categories depending on the purpose of the test or how it is executed.

Memory Testing

27 January 2023 by Phillip JohnstonMemory testing is a common activity performed during design, manufacturing, and Power-on Self Testing. Table of Contents: Problems Identified by Memory Testing Memory Testing Techniques Analysis References Problems Identified by Memory Testing Design Identify improper wiring for external memory Identify whether the code to interface with external memory has been implemented correctly Manufacturing Identify improper soldering for external memory Identify failed chips Power-on Self Testing Identify failed hardware and prevent booting Run-time Identify soft memory failures, such as those triggered by radiation Memory Testing Techniques Run as Early as Possible Naive Moving Ones Validating Data …

To access this content, you must purchase a Membership - check out the different options here. If you're a member, log in.