Esempio n. 1
0
        public void Process_WithNotRegisteredHandler_ShouldThrowException()
        {
            // Assign
            FakeUnregisteredCommand        command   = new FakeUnregisteredCommand();
            ICommandProcessor <FakeStatus> processor = new FakeStatefulCommandProcessor();

            // Act, Assert
            Assert.Throws <ArgumentException>(() => processor.Process(command));
        }
Esempio n. 2
0
        public void CanProcess_WithNotRegisteredHandler_ShouldReturnFalse()
        {
            // Assign
            FakeUnregisteredCommand        command   = new FakeUnregisteredCommand();
            ICommandProcessor <FakeStatus> processor = new FakeStatefulCommandProcessor();

            // Act
            bool canProcess = processor.CanProcess(command);

            // Assert
            Assert.False(canProcess);
        }