-
Notifications
You must be signed in to change notification settings - Fork 45
Commit 7c95c43
* Introduce custom plugin's JavaDoc tags #565
* Render UtBot custom JavaDoc tags correctly #565
* Add an option to generate summaries using custom JavaDoc tags #565
* Fill value of utbot.iterates tag #565
* Collect info about Invoke, Iterate, and Return sections #565
* Review fixes
* Add unit tests for summaries with custom JavaDoc tags #565
* Fix after rebasing
* Add summary tests for MinStack #565
* Fix broken tests
* Add <pre> tag only in case when custom javadoc tags are not used
* Use a full exception name instead of simple name to build inline link correctly
* Minor refactoring
* Minor refactoring: avoid code duplication
* Add DocCustomTagStatement and CgCustomTagStatement
* Refactored code to avoid code duplication
* Fix tests: add full name for classes
* Add JUnit extension to control USE_CUSTOM_TAGS setting
* Move useCustomJavaDocTags to UtSettings, make useFuzzing true
* Remove unused import and fix broken tests
* Fix broken tests
* Add comments, remove unused method
* Review fixes: fixed formatting, removed redundant types
* Review fixes: fixed formatting, removed useless overriding methods
* Review fixes: extracted method, polished code
* fix after rebasing
* fix after rebasing
* review fixes
* fix rendering after updating to idea 2022.1. now we don't need to generate comment content with HTML tags, we need only replace custom tags' names with their messages to make it look nice
1 parent 2f8b870 commit 7c95c43
File tree
20 files changed
+683
-30
lines changed- utbot-framework-api/src/main/kotlin/org/utbot/framework
- plugin/api
- utbot-framework/src
- main/kotlin/org/utbot/framework/codegen/model
- tree
- visitor
- test/kotlin/org/utbot/examples
- utbot-intellij/src/main
- kotlin/org/utbot/intellij/plugin/javadoc
- resources/META-INF
- utbot-summary-tests/src/test/kotlin/examples
- controlflow
- exceptions
- structures
- utbot-summary/src
- main/kotlin/org/utbot/summary
- comment
- test/kotlin/org/utbot/summary/comment
20 files changed
+683
-30
lines changedLines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
183 | 183 |
| |
184 | 184 |
| |
185 | 185 |
| |
186 | + | ||
187 | + | ||
188 | + | ||
189 | + | ||
190 | + | ||
186 | 191 |
| |
187 | 192 |
| |
188 | 193 |
| |
|
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1276 | 1276 |
| |
1277 | 1277 |
| |
1278 | 1278 |
| |
1279 | + | ||
1280 | + | ||
1281 | + | ||
1279 | 1282 |
| |
1280 | 1283 |
| |
1281 | 1284 |
| |
|
Lines changed: 11 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
14 | + | ||
14 | 15 |
| |
15 | 16 |
| |
16 | 17 |
| |
| |||
52 | 53 |
| |
53 | 54 |
| |
54 | 55 |
| |
56 | + | ||
55 | 57 |
| |
56 | 58 |
| |
57 | 59 |
| |
| |||
335 | 337 |
| |
336 | 338 |
| |
337 | 339 |
| |
340 | + | ||
341 | + | ||
342 | + | ||
343 | + | ||
344 | + | ||
338 | 345 |
| |
339 | 346 |
| |
340 | 347 |
| |
| |||
379 | 386 |
| |
380 | 387 |
| |
381 | 388 |
| |
389 | + | ||
390 | + | ||
391 | + | ||
392 | + | ||
382 | 393 |
| |
383 | 394 |
| |
384 | 395 |
| |
|
Lines changed: 10 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 | + | ||
19 | 20 |
| |
20 | 21 |
| |
21 | 22 |
| |
| |||
309 | 310 |
| |
310 | 311 |
| |
311 | 312 |
| |
312 | - | ||
313 | 313 |
| |
314 | 314 |
| |
315 | 315 |
| |
316 | 316 |
| |
317 | + | ||
318 | + | ||
319 | + | ||
320 | + | ||
321 | + | ||
322 | + | ||
323 | + | ||
324 | + | ||
325 | + | ||
317 | 326 |
| |
318 | 327 |
| |
319 | 328 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
25 | + | ||
25 | 26 |
| |
26 | 27 |
| |
27 | 28 |
| |
| |||
122 | 123 |
| |
123 | 124 |
| |
124 | 125 |
| |
126 | + | ||
125 | 127 |
| |
126 | 128 |
| |
127 | 129 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
34 | + | ||
34 | 35 |
| |
35 | 36 |
| |
36 | 37 |
| |
| |||
2746 | 2747 |
| |
2747 | 2748 |
| |
2748 | 2749 |
| |
2750 | + | ||
2749 | 2751 |
| |
2750 | 2752 |
| |
2751 | 2753 |
| |
|
Lines changed: 32 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + |
Lines changed: 46 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + | ||
44 | + | ||
45 | + | ||
46 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
37 | + | ||
38 | + | ||
39 | + | ||
37 | 40 |
| |
38 | 41 |
| |
39 | 42 |
| |
|
Lines changed: 25 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + |
0 commit comments