You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementation is written in Java 17, the API documentation is available [here](api).
11
11
You can also see the [specifications](spock-reports) for the classes generated with the spock-reports.
@@ -14,9 +14,7 @@ You can also see the [specifications](spock-reports) for the classes generated w
14
14
15
15
Tests are written in groove language. For unit testing, the Spock framework was used. To test the operation of the algorithms, the following sample graphs were created.
16
16
17
-
#### Small Graph
18
-
19
-

17
+
#### Small Graph Sample
20
18
21
19
```groovy
22
20
def graph = new Graph([
@@ -27,9 +25,10 @@ Tests are written in groove language. For unit testing, the Spock framework was
27
25
28
26
```
29
27
30
-
#### Medium Graph
28
+

29
+
31
30
32
-

31
+
#### Medium Graph Sample
33
32
34
33
```groovy
35
34
def graph = new Graph([
@@ -41,9 +40,10 @@ Tests are written in groove language. For unit testing, the Spock framework was
41
40
])
42
41
```
43
42
44
-
#### Complex Graph
43
+

45
44
46
-

45
+
46
+
#### Complex Graph Sample
47
47
48
48
```groovy
49
49
def graph = new Graph([
@@ -56,4 +56,6 @@ Tests are written in groove language. For unit testing, the Spock framework was
0 commit comments