1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#[ allow( unused_imports ) ]
use super::*;
#[ allow( unused_imports ) ]
use test_tools::*;
//
tests_impls!
{
#[ test ]
fn test_complex()
{
// test.case( "default" );
let command = Struct1::former()
.form();
let expected = Struct1
{
string_slice_1 : "",
};
a_id!( command, expected );
// test.case( "set value" );
let command = Struct1::former()
.string_slice_1( "abc" )
.form();
let expected = Struct1
{
string_slice_1 : "abc",
};
a_id!( command, expected );
}
}
//
tests_index!
{
test_complex,
}