()
| 10 | } |
| 11 | #[test] |
| 12 | fn test_neg_basic_bar() { |
| 13 | let mut bar = Bar::new([("Ferris", RED), ("Stefan", GREEN), ("Test", BLUE)], &[100., 200., 500.,]); |
| 14 | bar.add(("Added", ORANGE), -400.); |
| 15 | bar.set_title("title"); |
| 16 | bar.set_ylabel("test"); |
| 17 | bar.show(); |
| 18 | } |
| 19 | |
| 20 | #[test] |
| 21 | fn test_small_bar() { |
nothing calls this directly
no test coverage detected