Files
FESADev/tests/unit/model_load_test.cpp
T
2026-06-12 02:25:07 +09:00

12 lines
210 B
C++

#include <fesa/model/load.hpp>
int main()
{
const fesa::model::Load load{
fesa::core::NodeId{2},
fesa::model::DofComponent::ux,
5.0
};
return load.value() == 5.0 ? 0 : 1;
}