Beispiel #1
0
 void AssertIsValid(string path)
 {
     Assert.IsTrue(PackagingUtils.CheckEntryForPackaging(path), $"{path} should be valid");
 }
Beispiel #2
0
 void AssertIsNotValid(string path)
 {
     Assert.IsFalse(PackagingUtils.CheckEntryForPackaging(path), $"{path} should *not* be valid");
 }