Exemplo n.º 1
0
 public void LogTest()
 {
     LoggingService target = new LoggingService(); // TODO: Initialize to an appropriate value
     string message = string.Empty; // TODO: Initialize to an appropriate value
     Category category = new Category(); // TODO: Initialize to an appropriate value
     Priority priority = new Priority(); // TODO: Initialize to an appropriate value
     target.Log(message, category, priority);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Exemplo n.º 2
0
 public void LoggingServiceConstructorTest()
 {
     LoggingService target = new LoggingService();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }