The input file for struct default values test

check_struct_default_values

Checks the default values of structs.

PARAMETERS

NameDescriptionDefault Value
struct_no_argsstruct with no argumentsstruct()
struct_argstruct with one argumentstruct(foo = “bar”)
struct_argsstruct with multiple argumentsstruct(bar = “foo”, foo = “bar”)
struct_int_argsstruct with int argumentsstruct(one = 1, three = 3, two = 2)
struct_struct_argsstruct with struct argumentsstruct(multiple = struct(one = 1, three = 3, two = 2), none = struct(), one = struct(foo = “bar”))