Java Unit Testing JaCoCo

132 Views Asked by At

I am new to Java and JaCoCo. I have a simple interface and an implementation as below.

public interface Action<T>{ T getT(T in); }
public class Foo{...}
public class ActionImpl implements Action<Foo>{ public Foo getT(Foo in);}

The class ActionImpl only has a default constructor. On writing unit tests for the class ActionImpl, JaCoCo reports 100% coverage for the ActionImpl but reports 88% coverage for ActionImpl.new Object(){...}.

How do I interpret this report and where does ActionImpl.new Object(){...} come from?

0

There are 0 best solutions below