mrpmorris/Fluxor

IStateSelection resolving for unit tests

PikoooX opened this issue · 3 comments

I got a situation that I am unsure how to handle. I have a component that has two state selectors which are generic and of the same type IStateSelection<State, int> and are in the same parent state. I am using BUnit tests with Moq, is there a way to register a service or a state in the test context that would result in these two selectors receiving different values? I can't really use ques for mocking setup cause that would be quite hard since the states are being called in multiple places so there is no way to determine the order of calls.

I'm sorry, I don't know the answer to this question. Have you asked in Moq?

I have found a hacky way arround it, I guess there is no real way of resolving it. You can always box those two values in a record or a class and then do it that way. I will see if it can be done through Moq.

Please keep me updated, I am very interested.