feat(result-contract-completion): step 2 — self-contained-hdf5

This commit is contained in:
KOKO\Mimi
2026-08-02 01:51:24 +09:00
parent 9d37465d92
commit 4d04f3dbbe
9 changed files with 1942 additions and 242 deletions
@@ -149,7 +149,7 @@ TEST(LinearStaticAnalysis, SolvesHandCalculatedAxialBeamInNodeIdOrder) {
ASSERT_TRUE(run.results.has_value());
EXPECT_TRUE(run.diagnostics.empty());
EXPECT_TRUE(fesa::validate_result_database(*run.results).succeeded);
EXPECT_EQ(run.results->schema_version, "1.0.0");
EXPECT_EQ(run.results->schema_version, "2.0.0");
ASSERT_EQ(run.results->steps.size(), 1);
EXPECT_EQ(run.results->steps[0].name, "Load");
ASSERT_EQ(run.results->steps[0].frames.size(), 1);
+1 -1
View File
@@ -64,7 +64,7 @@ fesa::ResultDatabase valid_database() {
{},
};
fesa::ResultStep step{"Load", {std::move(frame)}};
return {"1.0.0", {std::move(step)}};
return {"2.0.0", {std::move(step)}};
}
bool has_diagnostic(