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

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

            cfo.AfterPropertiesSet();
        }