assertFalse( matchPolicy.match( VendorTestFactory.getVendorInfo( Vendor.MONO, "2.1.18", "" ) ) );
}
public void testCreateFrameworkVersionPolicy()
{
VendorInfoMatchPolicy matchPolicy = matchPolicyFactory.createFrameworkVersionPolicy( "2.0.50727" );
assertTrue( matchPolicy.match( VendorTestFactory.getVendorInfo( Vendor.MONO, "", "2.0.50727" ) ) );
assertFalse( matchPolicy.match( VendorTestFactory.getVendorInfo( Vendor.MONO, "", "1.1.4322" ) ) );
}