()
| 10 | |
| 11 | impl Guest for Component { |
| 12 | fn run() { |
| 13 | test_named_roundtrip(); |
| 14 | test_bytes_roundtrip(); |
| 15 | test_empty_roundtrip(); |
| 16 | test_option_roundtrip(); |
| 17 | test_record_roundtrip(); |
| 18 | test_inline_roundtrip(); |
| 19 | test_large_map(); |
| 20 | test_multi_param_roundtrip(); |
| 21 | test_nested_roundtrip(); |
| 22 | test_variant_roundtrip(); |
| 23 | test_result_roundtrip(); |
| 24 | test_tuple_roundtrip(); |
| 25 | test_single_entry_roundtrip(); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | fn test_named_roundtrip() { |
nothing calls this directly
no test coverage detected