Example #1
0
 public void IsValidThrowsException()
 {
     var archetypeSlot = new ArchetypeSlot();
     var result = archetypeSlot.IsValid();
 }
Example #2
0
 public void ListsAreNotNull()
 {
     var archetypeSlot = new ArchetypeSlot();
     Assert.IsNotNull(archetypeSlot.Includes);
     Assert.IsNotNull(archetypeSlot.Excludes);
 }
Example #3
0
 public void IsSubsetOfThrowsException()
 {
     var archetypeSlot = new ArchetypeSlot();
     var result = archetypeSlot.IsSubsetOf(null);
 }