feat: add domain model foundation

This commit is contained in:
김경종
2026-06-08 16:40:04 +09:00
parent e4e2f57808
commit fdeac602f4
38 changed files with 2685 additions and 5 deletions
+40
View File
@@ -0,0 +1,40 @@
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;
}