public void BailsWhenNotConfigured()
        {
            CaoFactoryObject cfo = new CaoFactoryObject();

            Assert.Throws <ArgumentException>(() => cfo.AfterPropertiesSet());
        }
 public void BailsWhenNotConfigured()
 {
     CaoFactoryObject cfo = new CaoFactoryObject();
     Assert.Throws<ArgumentException>(() => cfo.AfterPropertiesSet());
 }
 public void BailsWhenNotConfigured ()
 {
     CaoFactoryObject cfo = new CaoFactoryObject();
     cfo.AfterPropertiesSet ();
 }
Esempio n. 4
0
        public void BailsWhenNotConfigured()
        {
            CaoFactoryObject cfo = new CaoFactoryObject();

            cfo.AfterPropertiesSet();
        }