* Test of isSecure method, of class WebCookie.
*/
@Test
public void testIsSecure() {
System.out.println("isSecure");
WebCookie instance = new WebCookie();
boolean expResult = false;
boolean result = instance.isSecure();
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}