41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
int run_boundary_condition_tests();
|
|
int run_domain_storage_tests();
|
|
int run_element_definition_tests();
|
|
int run_load_definition_tests();
|
|
int run_material_definition_tests();
|
|
int run_model_types_tests();
|
|
int run_node_tests();
|
|
int run_property_definition_tests();
|
|
int run_step_definition_tests();
|
|
|
|
int main() {
|
|
if (const int result = run_model_types_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_node_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_element_definition_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_material_definition_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_property_definition_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_boundary_condition_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_load_definition_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_step_definition_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
if (const int result = run_domain_storage_tests(); result != 0) {
|
|
return result;
|
|
}
|
|
return 0;
|
|
}
|