You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

QuartzScehdulerTests.cs 502 B

15 years ago
1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using NUnit.Framework;
  6. namespace ClickForensics.Quartz.Manager.Tests
  7. {
  8. [TestFixture]
  9. public class QuartzScehdulerTests
  10. {
  11. [Test]
  12. public void BackupToFileTests()
  13. {
  14. QuartzScheduler scheduler = new QuartzScheduler("app01", 555, "QuartzScheduler");
  15. scheduler.BackupToFile(new System.IO.FileInfo(@"C:\Users\jvilalta\Documents\toto.xml"));
  16. }
  17. }
  18. }