Author Archives: te-bachi

DevOps CI/CD

DevOps with GitLab CI Course – Build Pipelines and Deploy to AWS
CI/CD In 5 Minutes | Is It Worth The Hassle: Crash Course System Design #2
The IDEAL & Practical CI / CD Pipeline – Concepts Overview
What is Continuous Integration?

Tutorials

Kontinuierliche Integration (CI) (fortlaufende oder permanente Integration)
Continuous Delivery (CD) (fortlaufende Auslieferung)
DevOps, Softwareentwicklung (Dev), Systemadministratoren (Ops)
Was ist Continuous Integration?

Code coverage

Code coverage is a metric that can help you understand how much of your source is tested.

Testabdeckung
Code coverage
What is code coverage?

Basic coverage criteria

  • Function coverage – has each function (or subroutine) in the program been called?
  • Statement coverage – has each statement in the program been executed?
  • Edge coverage – has every edge in the control-flow graph been executed?
  • Branch coverage – has each branch (also called the DD-path) of each control structure (such as in if and case statements) been executed? For example, given an if statement, have both the true and false branches been executed? (This is a subset of edge coverage.)
  • Condition coverage – has each Boolean sub-expression evaluated both to true and false? (Also called predicate coverage.)