• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""The input file for struct default values test"""
2
3def check_struct_default_values(
4        struct_no_args = struct(),
5        struct_arg = struct(foo = "bar"),
6        struct_args = struct(foo = "bar", bar = "foo"),
7        struct_int_args = struct(one = 1, two = 2, three = 3),
8        struct_struct_args = struct(
9            none = struct(),
10            one = struct(foo = "bar"),
11            multiple = struct(one = 1, two = 2, three = 3),
12        )):
13    """Checks the default values of structs.
14
15    Args:
16        struct_no_args: struct with no arguments
17        struct_arg: struct with one argument
18        struct_args: struct with multiple arguments
19        struct_int_args: struct with int arguments
20        struct_struct_args: struct with struct arguments
21    """
22    pass
23