package com.haogrgr.test.util;
/**
* 常用的校验功能
*
* @author desheng.tu
* @since 2015年6月16日 上午10:01:40
*
*/
public final class Asserts {
public static void main(String[] args) {
}
public static void hasText(String str){
notNull(str);
if(str.length() ==0){
}
}
public static void notNull(Object obj){
}
}