CaptchaTest.java :  » J2EE » SimpleCaptcha-1.1.1 » nl » captcha » Java Open Source

Java Open Source » J2EE » SimpleCaptcha 1.1.1 
SimpleCaptcha 1.1.1 » nl » captcha » CaptchaTest.java
package nl.captcha;

import static org.junit.Assert.*;

import org.junit.Test;

public class CaptchaTest {

  @Test
  public void giveNullAnswer() {
    Captcha c = new Captcha.Builder(200, 50)
      .build();
    assertNotNull(c.getAnswer());
    assertFalse(c.isCorrect(null));
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.