public void testBasicPathMatch1() throws Exception {
final BasicClientCookie cookie = new BasicClientCookie("name", "value");
final CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff", false);
final CookieAttributeHandler h = new BasicPathHandler();
cookie.setPath("/stuff");
Assert.assertTrue(h.match(cookie, origin));
}
@Test
public void testBasicPathMatch2() throws Exception {
final BasicClientCookie cookie = new BasicClientCookie("name", "value");