I am currently reorganizing some code to make it more verifiable. In particular, I am extracting the interface of several classes to simplify the creation of test doublings.
I would like to leave the public interface the same with this code, naming the interface after the source class.
However, this leaves me with the problem of what to call the source class.
I am using C ++.
If my interface is:
class ServiceClient;
What should I call content, I came up with several options that do not convince me:
class ConcreteServiceClient;
class ServiceClientImpl;
class StandardServiceClient;
class BasicServiceClient;
What conventions are used by people?
source
share