Fixing Quartz integration code comments and setting warnaserror = true in build file

This commit is contained in:
lahma
2009-11-06 05:52:13 +00:00
parent d1bfe35fab
commit e76b73225e
15 changed files with 394 additions and 19 deletions

View File

@@ -34,12 +34,18 @@ namespace Spring.Scheduling.Quartz
{
private AdaptableJobFactory jobFactory;
/// <summary>
/// Test setup.
/// </summary>
[SetUp]
public void SetUp()
{
jobFactory = new AdaptableJobFactory();
}
/// <summary>
/// Tests job creation.
/// </summary>
[Test]
public void TestNewJob_IncompatibleJob()
{
@@ -64,12 +70,18 @@ namespace Spring.Scheduling.Quartz
}
}
/// <summary>
/// Tests job creation.
/// </summary>
[Test]
public void TestNewJob_ThreadStartJob()
{
// TODO ThreadStart is not the way to go
}
/// <summary>
/// Tests job creation.
/// </summary>
[Test]
public void TestNewJob_NormalIJob()
{