Exemplo n.º 1
0
        public async Task DispatchShouldRecordActionsUsingInMemoryRecordingStrategy()
        {
            var action = new Action("");

            await _actionSrouce.Dispatch(action);

            var actions = await _actionSrouce.GetActions();

            Assert.AreEqual(1, actions.Length);
        }