Exemplo n.º 1
0
 public void FilterMismatch()
 {
     FeedElement.FilterMismatch(new EntryPoint()).Should().BeFalse();
     FeedElement.FilterMismatch(new EntryPoint {
         IfZeroInstallVersion = new VersionRange("0..")
     }).Should().BeFalse();
     FeedElement.FilterMismatch(new EntryPoint {
         IfZeroInstallVersion = new VersionRange("..!0")
     }).Should().BeTrue();
 }