Example #1
0
 public void DisplayErrorWhenMessageIsEmptyShouldThrowAnException()
 {
     manager.DisplayError(string.Empty);
 }
Example #2
0
 public void DisplayErrorShouldCallRendererCorrectly()
 {
     mockedManager.DisplayError("Test message!");
     renderer.Verify(r => r.WriteAt(0, It.IsAny <int>(), "Test message!"));
 }