()
| 594 | |
| 595 | #[test] |
| 596 | fn test_protocol_method() { |
| 597 | let class = test_utils::custom_class(); |
| 598 | let result: i32 = unsafe { |
| 599 | msg_send![class, addNumber:1 toNumber:2] |
| 600 | }; |
| 601 | assert_eq!(result, 3); |
| 602 | } |
| 603 | |
| 604 | #[test] |
| 605 | fn test_subprotocols() { |
nothing calls this directly
no test coverage detected