Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 13 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | // spec/MissingResourceException.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", "MissingResourceException"]); |