You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
391 B

#include "gen_test.h"
#include <assert.h>
#include <stdio.h>
#include <common/utils.h>
/* AUTOGENERATED MOCKS START */
/* AUTOGENERATED MOCKS END */
int main(void)
{
setup_locale();
void *ctx = tal(NULL, char);
struct tlv_n1 *n1 = tlv_n1_new(ctx);
struct tlv_n2 *n2 = tlv_n2_new(ctx);
struct tlv_n3 *n3 = tlv_n3_new(ctx);
assert(n1);
assert(n2);
assert(n3);
tal_free(ctx);
}