如题,使用FizzWare.NBuilder 可以自动填充各种各样的class数据,超乎你想想,就是一些人名,街道,什么的都是老外的,谁叫咱们没弄出个有中国特色的呢。
步骤1: 废话少说,先引入FizzWare.NBuilder.dll这个dll, 这个dll 在网上仔细搜搜还能找到到。
步骤2: 定义个class,你可以使用一段json 然后看http://blog.csdn.net/asa_jim/article/details/46884143这篇文章自动生成clas
public class Rootobject
{
public int orderId { get; set; }
public string carrierCode { get; set; }
public string serviceCode { get; set; }
public string packageCode { get; set; }
public string confirmation { get; set; }
public string shipDate { get; set; }
public Weight weight { get; set; }
public string dimensions { get; set; }
public string insuranceOptions { get; set; }
public string internationalOptions { get; set; }
public string advancedOptions { get; set; }
public bool testLabel { get; set; }
}
public class Weight
{
public int value { get; set; }
public string units { get; set; }
}
步骤3:使用FizzWare.NBuilder 填充数据
填充单个的:
Rootobject rootObject = Builder<Rootobject>.CreateNew();
填充列表的:
List<Rootobject> list = Builder<Rootobject>.CreateListOfSize(50).Build();
结语:如果你平时就手动写写测试数据,这个可能帮不了你什么,如果你是采用测试驱动开发的模式,那就很有用了!