I have GenServer which basically only handles cast.
So I don't have any functions which track state of server (as I don't need it).
The problem: while I don't need it in production, I need some testing.
I can define handle_call just to track server state in test suit, however, this feels wrong.
I thought of adding this handle_call function at runtime before my test suit, so I can track server state in certain cases of casts sequences.
Tried to find some useful data googling, but didn't find anything.