@@ -9,7 +9,7 @@ use crate::{BoxStr, MapInput, Result, TestGenerator, TranslationError};
9
9
#[ derive( Template , Clone ) ]
10
10
#[ template( path = "test.rs" ) ]
11
11
pub ( crate ) struct RustTestTemplate {
12
- pub ( crate ) template : TestTemplate ,
12
+ pub template : TestTemplate ,
13
13
}
14
14
15
15
impl RustTestTemplate {
@@ -27,8 +27,8 @@ impl RustTestTemplate {
27
27
#[ derive( Template , Clone ) ]
28
28
#[ template( path = "test.c" ) ]
29
29
pub ( crate ) struct CTestTemplate {
30
- pub ( crate ) template : TestTemplate ,
31
- pub ( crate ) headers : Vec < String > ,
30
+ pub template : TestTemplate ,
31
+ pub headers : Vec < String > ,
32
32
}
33
33
34
34
impl CTestTemplate {
@@ -46,9 +46,9 @@ impl CTestTemplate {
46
46
/// Stores all information necessary for generation of tests for all items.
47
47
#[ derive( Clone , Debug , Default ) ]
48
48
pub ( crate ) struct TestTemplate {
49
- pub ( crate ) const_cstr_tests : Vec < TestCstr > ,
50
- pub ( crate ) const_tests : Vec < TestConst > ,
51
- pub ( crate ) test_idents : Vec < BoxStr > ,
49
+ pub const_cstr_tests : Vec < TestCstr > ,
50
+ pub const_tests : Vec < TestConst > ,
51
+ pub test_idents : Vec < BoxStr > ,
52
52
}
53
53
54
54
impl TestTemplate {
0 commit comments