summaryrefslogtreecommitdiff
path: root/product/service.infrastructure/threading/CommandProcessorSpecs.cs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2009-10-23 13:09:04 -0600
committermo khan <mo@mokhan.ca>2009-10-23 13:09:04 -0600
commit9a3430b2a1f0445c0dbac703907762e225383421 (patch)
tree751d5742a199eae57ebb6d767e650bd6c803bdc3 /product/service.infrastructure/threading/CommandProcessorSpecs.cs
parentf76fe6ca01f3dc5fabc8bf16f299420ba9d7ef05 (diff)
renamed some components to something that is more descriptive.main
Diffstat (limited to 'product/service.infrastructure/threading/CommandProcessorSpecs.cs')
-rw-r--r--product/service.infrastructure/threading/CommandProcessorSpecs.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/product/service.infrastructure/threading/CommandProcessorSpecs.cs b/product/service.infrastructure/threading/CommandProcessorSpecs.cs
index a8bc1f8..3e68e92 100644
--- a/product/service.infrastructure/threading/CommandProcessorSpecs.cs
+++ b/product/service.infrastructure/threading/CommandProcessorSpecs.cs
@@ -5,10 +5,10 @@ using MoMoney.Service.Infrastructure.Threading;
namespace momoney.service.infrastructure.threading
{
- [Concern(typeof (CommandProcessor))]
- public abstract class behaves_like_a_command_processor : concerns_for<ICommandProcessor, CommandProcessor> {}
+ [Concern(typeof (SynchronousCommandProcessor))]
+ public abstract class behaves_like_a_command_processor : concerns_for<CommandProcessor, SynchronousCommandProcessor> {}
- [Concern(typeof (CommandProcessor))]
+ [Concern(typeof (SynchronousCommandProcessor))]
public class when_running_all_the_queued_commands_waiting_for_execution : behaves_like_a_command_processor
{
it should_run_the_first_command_in_the_queue = () => first_command.was_told_to(f => f.run());
@@ -32,7 +32,7 @@ namespace momoney.service.infrastructure.threading
static Command second_command;
}
- [Concern(typeof (CommandProcessor))]
+ [Concern(typeof (SynchronousCommandProcessor))]
public class when_attempting_to_rerun_the_command_processor : behaves_like_a_command_processor
{
it should_not_re_run_the_commands_that_have_already_executed =