| 103 | /* AUTOGENERATED MOCKS END */ |
| 104 | |
| 105 | int main(void) |
| 106 | { |
| 107 | setup_locale(); |
| 108 | void *ctx = tal(NULL, char); |
| 109 | |
| 110 | struct tlv_test_n1 *n1 = tlv_test_n1_new(ctx); |
| 111 | struct tlv_test_n2 *n2 = tlv_test_n2_new(ctx); |
| 112 | struct tlv_test_n3 *n3 = tlv_test_n3_new(ctx); |
| 113 | |
| 114 | assert(n1); |
| 115 | assert(n2); |
| 116 | assert(n3); |
| 117 | |
| 118 | tal_free(ctx); |
| 119 | } |
nothing calls this directly
no test coverage detected