all files / src/ random-provider.js

100% Statements 26/26
100% Branches 10/10
100% Functions 7/7
100% Lines 2/2
2 statements, 4 branches Ignored     
1 2 3 4 5    24×    
export default class RandomProvider {
    randomInt(low, high) {
        return Math.floor(Math.random() * (high - low) + low);
    }
}