I met a problem about the Bullseye code coverage. It's a tracing ability of the program. The following code is not traced.
class A
{
public:
virtual void func() = 0;
};
class B
{
public:
virtual void func()
{
std::cout << "Am I traced?" << std::endl;
}
};
void main()
{
A *pa = new B;
pa->func();
}
I guess that Bullseye may not trace pure virtual function. If there are someone who has a knowledge about the program, please give me some advice.