Tuesday 16 December 2014

White Box Test List

  • Availability Testing
  • Baseline testing
  • Compatibility testing
  • Compliance testing
  • Configuration Testing
  • Documentation testing
  • Endurance testing
  • Ergonomics Testing
  • Interoperability Testing
  • Installation Testing
  • Load testing
  • Localization testing and Internationalization testing
  • Maintainability Testing
  • Operational Readiness Testing
  • Performance testing
  • Recovery testing
  • Reliability Testing
  • Resilience testing
  • Security testing
  • Scalability testing
  • Stress testing
  • Usability testing
  • Volume testing

Sunday 14 December 2014

Cyclomatic Complexity

  • This metric was developed by Thomas J. McCabe in 1976 and it is based on a control flow representation of the program.  For the original paper here . Edges represent control flow between the nodes.




  •  One more thing on cyclomatic complexity. Occasionally, you might hear
    someone argue that the actual formula for McCabe’s cyclomatic complexity is
    C = E - N + P
    whereas we list it as
    C = E - N + 2P

    E = Edge
    N = Nodes