()
| 84 | |
| 85 | #[test] |
| 86 | fn test_todo_item_creation() { |
| 87 | let item = TodoItem::new("test", "content"); |
| 88 | assert_eq!(item.title, "test"); |
| 89 | assert_eq!(item.content, "content"); |
| 90 | } |
| 91 | |
| 92 | #[test] |
| 93 | fn test_serialization_roundtrip() { |
nothing calls this directly
no outgoing calls
no test coverage detected