ToString() public method

Returns a System.String that represents the current CmisSync.Lib.Events.ExceptionEvent containing the Message of the embedded exception.
public ToString ( ) : string
return string
 public void ToStringIsImplemented() {
     var exception = new Mock<Exception>(string.Empty) { CallBase = true }.Object;
     var ev = new ExceptionEvent(exception);
     Assert.IsNotNull(ev.ToString());
 }