assertEquals(0, man.getCookieCount());
}
public void testSendCookie() throws Exception {
man.add(new Cookie("id", "value", "jakarta.apache.org", "/", false, 9999999999L));
HTTPSamplerBase sampler = new HTTPNullSampler();
sampler.setDomain("jakarta.apache.org");
sampler.setPath("/index.html");
sampler.setMethod(HTTPSamplerBase.GET);
assertNotNull(man.getCookieHeaderForURL(sampler.getUrl()));
}