Example #1
0
        public void LogDecorationTest()
        {
            PjLog_Accessor  target   = new PjLog_Accessor();  // TODO: Initialize to an appropriate value
            PjLogDecoration expected = new PjLogDecoration(); // TODO: Initialize to an appropriate value
            PjLogDecoration actual;

            target.LogDecoration = expected;
            actual = target.LogDecoration;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Example #2
0
 public PjLog()
 {
     pLogDecoration = PjLogDecoration.HasTime | PjLogDecoration.HasMicroSec | PjLogDecoration.HasSender | PjLogDecoration.HasNewLine;
     filename       = "pj.log";
 }
Example #3
0
 public void LogDecorationTest()
 {
     PjLog_Accessor target = new PjLog_Accessor(); // TODO: Initialize to an appropriate value
     PjLogDecoration expected = new PjLogDecoration(); // TODO: Initialize to an appropriate value
     PjLogDecoration actual;
     target.LogDecoration = expected;
     actual = target.LogDecoration;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #4
0
 public PjLog()
 {
     pLogDecoration = PjLogDecoration.HasTime | PjLogDecoration.HasMicroSec | PjLogDecoration.HasSender | PjLogDecoration.HasNewLine;
     filename = "pj.log";
 }