public void TraceInfoTest()
 {
     TraceManager target = new TraceManager(); // TODO: Initialize to an appropriate value
     string message = string.Empty; // TODO: Initialize to an appropriate value
     target.TraceInfo(message);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void TraceManagerConstructorTest()
 {
     TraceManager target = new TraceManager();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void TraceStopTest()
 {
     TraceManager target = new TraceManager(); // TODO: Initialize to an appropriate value
     target.TraceStop();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void TraceWarningTest()
 {
     TraceManager target = new TraceManager(); // TODO: Initialize to an appropriate value
     string message = "TraceWarning"; // TODO: Initialize to an appropriate value
     target.TraceWarning(message);
     //As("A method that does not return a value cannot be verified.");
 }
 public void TraceStartLogicalOperationTest()
 {
     TraceManager target = new TraceManager(); // TODO: Initialize to an appropriate value
     string operationName = "NLayerApp"; // TODO: Initialize to an appropriate value
     target.TraceStartLogicalOperation(operationName);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }