spec/ArrayStoreException.spec.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 13
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 13
rs 10
bpm 0
cpm 0
noi 0
1
// spec/ArrayStoreException.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(["Throwable", "Exception", "RuntimeException", "ArrayStoreException"]);