forked from castleproject/Windsor.Quartz
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved test classes to their own files
- Loading branch information
Showing
4 changed files
with
50 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System; | ||
using Quartz; | ||
|
||
namespace Castle.Facilities.QuartzIntegration.Tests { | ||
public class SomeJobListener : IJobListener { | ||
public void JobToBeExecuted(JobExecutionContext context) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public void JobExecutionVetoed(JobExecutionContext context) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public void JobWasExecuted(JobExecutionContext context, JobExecutionException jobException) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public string Name { | ||
get { return GetType().AssemblyQualifiedName; } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System; | ||
using Quartz; | ||
|
||
namespace Castle.Facilities.QuartzIntegration.Tests { | ||
public class SomeTriggerListener : ITriggerListener { | ||
public void TriggerFired(Trigger trigger, JobExecutionContext context) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool VetoJobExecution(Trigger trigger, JobExecutionContext context) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public void TriggerMisfired(Trigger trigger) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public void TriggerComplete(Trigger trigger, JobExecutionContext context, SchedulerInstruction triggerInstructionCode) { | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public string Name { | ||
get { return GetType().AssemblyQualifiedName; } | ||
} | ||
} | ||
} |