@@ -3,12 +3,12 @@ python_exe = import('python').find_installation('python3')
33
44install_subdir (meson .current_source_dir(), install_dir : ' .' )
55
6- test (' ## templates help ' ,
6+ test (' api_template_help ' ,
77 python_exe,
88 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
99 args : [api_dir + ' system_template.py' , ' -h' ])
1010
11- test (' ## templates show solid creators ' ,
11+ test (' api_show_solid _creators ' ,
1212 python_exe,
1313 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
1414 args : [api_dir + ' system_template.py' , ' -sl' ])
@@ -26,28 +26,28 @@ g4objects = {
2626
2727foreach volume : g4objects.keys()
2828 pars = g4objects[volume]
29- test (' ## template show code for volume ' + volume,
29+ test (' api_show_template_code_for_ ' + volume,
3030 python_exe,
3131 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
3232 args : [api_dir + ' system_template.py' , ' -gv' , volume])
33- test (' ## template show code for volume ' + volume + ' with parameters ' + pars,
33+ test (' api_template_show_code_for_volume ' + volume + ' _with_parameters_ ' + pars,
3434 python_exe,
3535 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
3636 args : [api_dir + ' system_template.py' , ' -gv' , volume, ' -gvp' , pars])
3737endforeach
3838
39- test (' ## template show code for solid G4Cons in silent mode ' ,
39+ test (' api_show_template_code_for_G4Cons ' ,
4040 python_exe,
4141 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
4242 args : [api_dir + ' system_template.py' , ' -gv' , ' G4Cons' , ' -silent' ])
4343
4444test_dir = meson .current_build_dir() + ' /../test'
45- test (' ## template create system test ' ,
45+ test (' api_create_system ' ,
4646 python_exe,
4747 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
4848 args : [api_dir + ' system_template.py' , ' -s' , ' test' ], priority : 10 )
4949foreach format : [' ascii' , ' sqlite' ]
50- test (' ## template build geometry in test for format ' + format,
50+ test (' api_template_build_geometry_in_test_for_format_ ' + format,
5151 python_exe,
5252 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
5353 args : [' test.py' , ' -f' , format], workdir : test_dir, priority : - 10 )
@@ -67,16 +67,16 @@ foreach volume: g4objects.keys()
6767 geo_py = ' -write_to=geometry_test_' + volume + ' .py'
6868 test_dir = meson .current_build_dir() + ' /../' + test_name
6969 pars = g4objects[volume]
70- test (' ## template create system test for volume ' + volume,
70+ test (' api_create_template_system_with ' + volume,
7171 python_exe,
7272 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
7373 args : [api_dir + ' system_template.py' , ' -s' , test_name], priority : 10 )
74- test (' ## template replace geometry in test with ' + volume,
74+ test (' api_template_replace_geometry_with ' + volume,
7575 python_exe,
7676 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
7777 args : [api_dir + ' system_template.py' , ' -gv' , volume, ' -gvp' , pars, geo_py, sub_name], workdir : test_dir, priority : - 10 )
7878 foreach format : [' ascii' , ' sqlite' ]
79- test (' ## template build geometry in test of replacing geometry with ' + volume + ' with format ' + format,
79+ test (' api_template_build_geometry_in_test_of_replacing_geometry_with ' + volume + ' _with_format ' + format,
8080 python_exe,
8181 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
8282 args : [python_main, ' -f' , format], workdir : test_dir, priority : - 20 )
0 commit comments