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

12 lines
242 B
C++

#include <fesa/model/property.hpp>
int main()
{
const fesa::model::Property property{
fesa::core::PropertyId{2},
"section",
fesa::core::MaterialId{3}
};
return property.material_id().value == 3 ? 0 : 1;
}