()
| 105 | } |
| 106 | |
| 107 | @Test |
| 108 | void testSCC() { |
| 109 | Graph<Integer> g = readGraph("src/test/resources/util/graph-scc.txt"); |
| 110 | SCC<Integer> scc = new SCC<>(g); |
| 111 | assertEquals(7, scc.getComponents().size()); |
| 112 | assertEquals(3, scc.getTrueComponents().size()); |
| 113 | } |
| 114 | |
| 115 | @Test |
| 116 | void testMergedSCC() { |
nothing calls this directly
no test coverage detected