View on GitHub

reading-notes

My learning journal for Code Fellows

Ten Thousand Game 1

Random Module

The random module allows you to generate random numbers

Random functions

Risk Analysis

Definition: In software testing, risk analysis is the process of identifying the risks in applications or software that you built and prioritizing them to test

Why Use Risk Analysis

Using risk analysis at the beginning of the process highlights potential problem areas. With that in mind, more thoughtful and efficient testing can happen during the coding process

Certain risks are unavoidable:

Risk Magnitude

Risk Identification

Risk Assessment

There are three perspectives in risk assessment

Test Coverage

Test coverage is a tool to help you find untested code within your codebase

Good test coverage isn’t necessarily a static number, it moves with each project and depends on the quality of the tests being done that contribute to the test coverage quotient.

Good test coverage means that bugs will rarely escape into production, as well as facilitates more dynamic code production, as devs aren’t worried about changing the code base for fear of production bugs.

You can test too much if you have the ability to remove tests and still have enough, or if writing tests is slowing you down too much.

Big O Notation

There are multiple ways to describe O(N), as long as you describe what the variable is representing. S could represent the same thing as 5N, what matters is describing the value of the variable in relation to the algorithm. c