Beispiel #1
0
 public void ListsAreNotNull()
 {
     var eventContext = new EventContext();
     Assert.IsNotNull(eventContext.Participations);
 }
Beispiel #2
0
 public void IsPathUniqueThrowsException()
 {
     var eventContext = new EventContext();
     eventContext.IsPathUnique(string.Empty);
 }
Beispiel #3
0
 public void GetItemsAtPathThrowsException()
 {
     var eventContext = new EventContext();
     eventContext.GetItemsAtPath(string.Empty);
 }
Beispiel #4
0
 public void GetPathOfItemThrowsException()
 {
     var eventContext = new EventContext();
     eventContext.GetPathOfItem(null);
 }
Beispiel #5
0
 public void DoesPathExistsThrowsException()
 {
     var eventContext = new EventContext();
     eventContext.DoesPathExists(string.Empty);
 }