()
| 630 | } |
| 631 | |
| 632 | private String getMarker() { |
| 633 | return switch (kind) { |
| 634 | case MUST -> ok() ? "✅" : "❌"; |
| 635 | case SHOULD -> ok() ? "✅" : "⚠️"; |
| 636 | case BONUS -> "💚"; |
| 637 | }; |
| 638 | } |
| 639 | |
| 640 | boolean ok() { |
| 641 | return content != null; |
no test coverage detected