File tree Expand file tree Collapse file tree 4 files changed +52
-0
lines changed
IntegrationEngine.Tests/Scheduler
IntegrationEngine/MessageQueue Expand file tree Collapse file tree 4 files changed +52
-0
lines changed Original file line number Diff line number Diff line change 11using IntegrationEngine . Scheduler ;
2+ using NUnit . Framework ;
23using Quartz . Impl ;
34using System ;
45using System . Collections . Generic ;
@@ -7,6 +8,7 @@ namespace IntegrationEngine.Tests.Scheduler
78{
89 public class EngineSchedulerTest
910 {
11+ [ Test ]
1012 public void ShouldDeleteTrigger ( )
1113 {
1214 var jobType = typeof ( IntegrationJobFixture ) ;
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace IntegrationEngine . MessageQueue
8+ {
9+ public interface IMessageQueueListener
10+ {
11+ public void Listener ( ) ;
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace IntegrationEngine . MessageQueue
8+ {
9+ public class MsmqClient : IMessageQueueClient
10+ {
11+ public void Publish < T > ( T value )
12+ {
13+ throw new NotImplementedException ( ) ;
14+ }
15+
16+ public bool IsServerAvailable ( )
17+ {
18+ throw new NotImplementedException ( ) ;
19+ }
20+ }
21+ }
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace IntegrationEngine . MessageQueue
8+ {
9+ public class MsmqListener : IMessageQueueListener
10+ {
11+ void IMessageQueueListener . Listener ( )
12+ {
13+ throw new NotImplementedException ( ) ;
14+ }
15+ }
16+ }
You can’t perform that action at this time.
0 commit comments