I'm creating a mock class for a Lexer object, and I think I may need to do some refactoring. I have two options:
- Create an interface
Lexer, and rename the currentLexerto something likeRealLexer. HaveMockLexerimplementLexer, and method calls take anything of typeLexer. I dislike that my preciousLexerclass is now renamed to something that has no meaning if you don't know that there's a mock class. - Create an interface
LexerInterface(which I already dislike, since it hasInterfacein its name), but allowing myself to keep the currentLexerthe way it is.MockLexerthen implementsLexerInterface. Another downside is that method calls takeLexerInterfaceas params.
Both options smell bad to me, so I figured I'd let standards decide for me. Has anyone had experience with this?

RealLexer? Just name yourMockLexerwhatever you want since it'll only be used for testing. Then maybe aLexerinterface and aDefaultLexerfor a default impl – Jonathan Spooner Oct 25 '11 at 3:53Mock. – Jonathan Spooner Oct 25 '11 at 4:00