(name: &'static str, detail: impl Into<String>)
| 640 | |
| 641 | impl Check { |
| 642 | fn ok(name: &'static str, detail: impl Into<String>) -> Self { |
| 643 | Self { |
| 644 | name, |
| 645 | detail: detail.into(), |
| 646 | level: CheckLevel::Ok, |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | fn warning(name: &'static str, detail: impl Into<String>) -> Self { |
| 651 | Self { |
no outgoing calls
no test coverage detected