| 113 | } |
| 114 | |
| 115 | int main(void) |
| 116 | { |
| 117 | setup_locale(); |
| 118 | void *ctx = tal(NULL, char); |
| 119 | |
| 120 | struct tlv_test_n1 *n1 = tlv_test_n1_new(ctx); |
| 121 | struct tlv_test_n2 *n2 = tlv_test_n2_new(ctx); |
| 122 | struct tlv_test_n3 *n3 = tlv_test_n3_new(ctx); |
| 123 | |
| 124 | assert(n1); |
| 125 | assert(n2); |
| 126 | assert(n3); |
| 127 | |
| 128 | test_signed_ints(); |
| 129 | |
| 130 | tal_free(ctx); |
| 131 | } |
nothing calls this directly
no test coverage detected