Package br.com.flexait.core.test

Source Code of br.com.flexait.core.test.ValidatorUtilMock

package br.com.flexait.core.test;

import br.com.caelum.vraptor.Validator;
import br.com.caelum.vraptor.util.test.JSR303MockValidator;
import br.com.flexait.core.validation.ValidatorUtil;

public class ValidatorUtilMock extends ValidatorUtil {

  public ValidatorUtilMock() {
    super(new JSR303MockValidator());
  }
 
  public ValidatorUtilMock(Validator validator) {
    super(validator);
  }

}
TOP

Related Classes of br.com.flexait.core.test.ValidatorUtilMock

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.