2021-12-04 12:23:56 +01:00
|
|
|
#include "config.h"
|
2020-10-22 01:51:08 +02:00
|
|
|
#include "test_gen.h"
|
|
|
|
#include "print_gen.h"
|
2019-07-19 19:01:41 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
2019-07-20 01:21:25 +02:00
|
|
|
/* AUTOGENERATED MOCKS START */
|
2019-07-21 05:04:59 +02:00
|
|
|
/* Generated stub for fromwire_peektype */
|
|
|
|
int fromwire_peektype(const u8 *cursor UNNEEDED)
|
|
|
|
{ fprintf(stderr, "fromwire_peektype called!\n"); abort(); }
|
|
|
|
/* Generated stub for printwire_amount_msat */
|
2022-03-23 00:31:14 +01:00
|
|
|
bool printwire_amount_msat(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
2019-07-21 05:04:59 +02:00
|
|
|
{ fprintf(stderr, "printwire_amount_msat called!\n"); abort(); }
|
|
|
|
/* Generated stub for printwire_tlvs */
|
2022-03-23 00:31:14 +01:00
|
|
|
bool printwire_tlvs(const char *tlv_name UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED,
|
2019-07-21 05:04:59 +02:00
|
|
|
const struct tlv_print_record_type types[] UNNEEDED, size_t num_types UNNEEDED)
|
|
|
|
{ fprintf(stderr, "printwire_tlvs called!\n"); abort(); }
|
2022-03-23 00:31:14 +01:00
|
|
|
/* Generated stub for printwire_tu32 */
|
|
|
|
bool printwire_tu32(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
|
|
|
{ fprintf(stderr, "printwire_tu32 called!\n"); abort(); }
|
|
|
|
/* Generated stub for printwire_tu64 */
|
|
|
|
bool printwire_tu64(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
|
|
|
{ fprintf(stderr, "printwire_tu64 called!\n"); abort(); }
|
2019-07-21 05:04:59 +02:00
|
|
|
/* Generated stub for printwire_u16 */
|
2022-03-23 00:31:14 +01:00
|
|
|
bool printwire_u16(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
2019-07-21 05:04:59 +02:00
|
|
|
{ fprintf(stderr, "printwire_u16 called!\n"); abort(); }
|
|
|
|
/* Generated stub for printwire_u32 */
|
2022-03-23 00:31:14 +01:00
|
|
|
bool printwire_u32(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
2019-07-21 05:04:59 +02:00
|
|
|
{ fprintf(stderr, "printwire_u32 called!\n"); abort(); }
|
|
|
|
/* Generated stub for printwire_u64 */
|
2022-03-23 00:31:14 +01:00
|
|
|
bool printwire_u64(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
2019-07-21 05:04:59 +02:00
|
|
|
{ fprintf(stderr, "printwire_u64 called!\n"); abort(); }
|
|
|
|
/* Generated stub for printwire_u8_array */
|
2022-03-23 00:31:14 +01:00
|
|
|
bool printwire_u8_array(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED, size_t len UNNEEDED)
|
2019-07-21 05:04:59 +02:00
|
|
|
{ fprintf(stderr, "printwire_u8_array called!\n"); abort(); }
|
2019-07-20 01:21:25 +02:00
|
|
|
/* AUTOGENERATED MOCKS END */
|
|
|
|
|
2019-07-19 19:01:41 +02:00
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
setup_locale();
|
2019-07-20 01:21:25 +02:00
|
|
|
void *ctx = tal(NULL, char);
|
|
|
|
|
2019-07-21 05:59:57 +02:00
|
|
|
struct tlv_test_n1 *n1 = tlv_test_n1_new(ctx);
|
|
|
|
struct tlv_test_n2 *n2 = tlv_test_n2_new(ctx);
|
|
|
|
struct tlv_test_n3 *n3 = tlv_test_n3_new(ctx);
|
2019-07-20 01:21:25 +02:00
|
|
|
|
|
|
|
assert(n1);
|
|
|
|
assert(n2);
|
|
|
|
assert(n3);
|
2019-07-19 19:01:41 +02:00
|
|
|
|
2019-07-20 01:21:25 +02:00
|
|
|
tal_free(ctx);
|
2019-07-19 19:01:41 +02:00
|
|
|
}
|