GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: tests/TestB.hpp Lines: 1 1 100.0 %
Date: 2021-03-10 23:02:29 Branches: 0 0 - %

Line Branch Exec Source
1
#ifndef TEST_EIQUADPROG_CLASS_B_
2
#define TEST_EIQUADPROG_CLASS_B_
3
4
#include "TestA.hpp"
5
6
namespace eiquadprog {
7
namespace tests {
8
9
1
class B {
10
 protected:
11
  Eigen::VectorXd solution_;
12
13
 public:
14
  A A_;
15
16
  B();
17
  bool do_something();
18
};
19
}  // namespace tests
20
}  // namespace eiquadprog
21
#endif /* TEST_EIQUADPROG_CLASS_B_ */