Completed
Push — master ( 69943d...9f3a94 )
by Esaú
01:40
created

spec/StringIndexOutOfBoundsException.spec.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 19
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 0
wmc 0
c 2
b 0
f 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 19
rs 10
bpm 0
cpm 0
noi 0
1
// spec/StringIndexOutOfBoundsException.spec.js
2
"use strict";
3
4
// :: DEPENDENCIES
5
6
// load native dependencies
7
const path = require("path");
8
9
// load local dependencies
10
const hierarchy = require(path.join(__dirname, "helpers", "hierarchy-helper.js"));
11
12
// :: TESTING
13
14
hierarchy([
15
    "Throwable",
16
    "Exception",
17
    "RuntimeException",
18
    "IndexOutOfBoundsException",
19
    "StringIndexOutOfBoundsException"
20
]);