public void ShouldAllowInheritingStdSchedulerFactory()
 {
     // check that property names are validated through inheritance hierarchy
     NameValueCollection collection = new NameValueCollection();
     collection["quartz.scheduler.idleWaitTime"] = "123";
     collection["quartz.scheduler.test"] = "foo";
     StdSchedulerFactory factory = new TestStdSchedulerFactory(collection);
 }
        public void ShouldAllowInheritingStdSchedulerFactory()
        {
            // check that property names are validated through inheritance hierarchy
            NameValueCollection collection = new NameValueCollection();

            collection["quartz.scheduler.idleWaitTime"] = "123";
            collection["quartz.scheduler.test"]         = "foo";
            StdSchedulerFactory factory = new TestStdSchedulerFactory(collection);
        }