Пример #1
0
        public void LogActionTest()
        {
            PrivateObject param0 = null;                                                    // TODO: Initialize to an appropriate value
            DelegateLogFactory_Accessor target   = new DelegateLogFactory_Accessor(param0); // TODO: Initialize to an appropriate value
            Action <LogItem>            expected = null;                                    // TODO: Initialize to an appropriate value
            Action <LogItem>            actual;

            target.LogAction = expected;
            actual           = target.LogAction;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #2
0
        public void CreateLogTest()
        {
            PrivateObject param0 = null;                                                  // TODO: Initialize to an appropriate value
            DelegateLogFactory_Accessor target = new DelegateLogFactory_Accessor(param0); // TODO: Initialize to an appropriate value
            string      name     = string.Empty;                                          // TODO: Initialize to an appropriate value
            DelegateLog expected = null;                                                  // TODO: Initialize to an appropriate value
            DelegateLog actual;

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