()
| 327 | |
| 328 | #[test] |
| 329 | fn builder_ring_styling() { |
| 330 | let mut builder = AccessibilityBuilder::new(); |
| 331 | builder |
| 332 | .focusable() |
| 333 | .ring_color(Color::rgb(0.0, 120.0, 255.0)) |
| 334 | .ring_width(3); |
| 335 | |
| 336 | assert!(builder.config.show_ring); |
| 337 | assert_eq!(builder.config.ring_color, Some(Color::rgb(0.0, 120.0, 255.0))); |
| 338 | assert_eq!(builder.config.ring_width, Some(3)); |
| 339 | } |
| 340 | |
| 341 | #[test] |
| 342 | fn ring_color_accepts_into() { |
nothing calls this directly
no test coverage detected