public void GetFactoryTest()
        {
            SimpleLogResolver target   = new SimpleLogResolver(); // 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.");
        }