GCC Code Coverage Report


Directory: ./
File: bindings/python/geometry/linear-cone.cpp
Date: 2025-03-10 16:17:01
Exec Total Coverage
Lines: 4 4 100.0%
Branches: 4 8 50.0%

Line Branch Exec Source
1 // Copyright (c) 2015-2018, CNRS
2 // Authors: Justin Carpentier <jcarpent@laas.fr>
3
4 #include "multicontact-api/bindings/python/geometry/linear-cone.hpp"
5
6 #include "multicontact-api/bindings/python/geometry/expose-geometry.hpp"
7
8 namespace multicontact_api {
9 namespace python {
10 3 void exposeLinearCone() {
11
2/4
✓ Branch 2 taken 3 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 3 times.
✗ Branch 6 not taken.
3 ForceConePythonVisitor<multicontact_api::geometry::ForceCone>::expose(
12 "ForceCone");
13
2/4
✓ Branch 2 taken 3 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 3 times.
✗ Branch 6 not taken.
3 WrenchConePythonVisitor<multicontact_api::geometry::WrenchCone>::expose(
14 "WrenchCone");
15 3 }
16 } // namespace python
17 } // namespace multicontact_api
18