MechJack TV
MechJack TV
Absolutely and ultimately that’s what I’m doing, but I had to extend it first to get the behavior I needed for testing. This class lives at the edge of my...
That’s exactly what I want to do. It’s easier to mock an interface than a concrete class (you have more options). Moving from v4 of KICL to v5 also broke...
What I have to do today: ```java private static class TestableChannelMessageEvent extends ChannelMessageEvent { private String replyMessage; public TestableChannelMessageEvent(Client client, List originalMessages, User user, Channel channel, String message) { super(client,...
You are right that I don't have checker framework as a dependency because I'm not using directly. If that's the solution I still submit something about the module implementation is...
To be clear, make Mockito work was not the goal of my issue. Mockito breaking certainly put things on my radar, but at the end of the day, to use...