ToString() public method

Returns a System.String that represents the current CmisSync.Lib.Events.FSEvent.
public ToString ( ) : string
return string
コード例 #1
0
ファイル: EventTypesTest.cs プロジェクト: pcreignou/CmisSync
 public void FSEventTest() {
     ISyncEvent e = new FSEvent(WatcherChangeTypes.Created, "test");
     Assert.AreEqual("FSEvent with type \"Created\" on path \"test\"",e.ToString());
 }