Ejemplo n.º 1
0
        public void DelegateFactoryResolverConstructorTest()
        {
            FactoryRequestHandler   requestHandler = null; // TODO: Initialize to an appropriate value
            DelegateFactoryResolver target         = new DelegateFactoryResolver(requestHandler);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Ejemplo n.º 2
0
        public void GetFactoryTest()
        {
            FactoryRequestHandler   requestHandler = null;                                        // TODO: Initialize to an appropriate value
            DelegateFactoryResolver target         = new DelegateFactoryResolver(requestHandler); // TODO: Initialize to an appropriate value
            string      logName  = string.Empty;                                                  // TODO: Initialize to an appropriate value
            ILogFactory expected = null;                                                          // TODO: Initialize to an appropriate value
            ILogFactory actual;

            actual = target.GetFactory(logName);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }