예제 #1
0
        public void CanProcess_WithNotRegisteredHandler_ShouldReturnFalse()
        {
            // Assign
            FakeUnregisteredQuery query     = new FakeUnregisteredQuery();
            IQueryProcessor       processor = new FakeQueryProcessor();

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

            // Assert
            Assert.False(canProcess);
        }