Skip to content
Snippets Groups Projects
Verified Commit 4ab4667d authored by Justin Carpentier's avatar Justin Carpentier
Browse files

test/serialization: add missing test for Ellipsoid

parent bb7c32c2
No related branches found
No related tags found
No related merge requests found
/*
* Software License Agreement (BSD License)
*
* Copyright (c) 2021 INRIA.
* Copyright (c) 2021-2022 INRIA.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
......@@ -243,6 +243,11 @@ BOOST_AUTO_TEST_CASE(test_shapes) {
test_serialization(sphere, sphere_copy);
}
{
Ellipsoid ellipsoid(1., 2., 3.), ellipsoid_copy(0., 0., 0.);
test_serialization(ellipsoid, ellipsoid_copy);
}
{
Capsule capsule(1., 2.), capsule_copy(10., 10.);
test_serialization(capsule, capsule_copy);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment