()
| 419 | |
| 420 | #[test] |
| 421 | fn test_create_insertion_tokens() { |
| 422 | let line = SemanticLine::new(b"hello world\n", 1); |
| 423 | let tokens = create_insertion_tokens(&line); |
| 424 | |
| 425 | // All should be insertions |
| 426 | for tc in &tokens { |
| 427 | assert!(tc.is_inserted()); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | #[test] |
| 432 | fn test_create_deletion_tokens() { |
nothing calls this directly
no test coverage detected