项目作者: ernestohs

项目描述 :
⚙️📊 Data Generation Tool
高级语言: C#
项目地址: git://github.com/ernestohs/Munchausen.git
创建时间: 2015-08-21T19:18:36Z
项目社区:https://github.com/ernestohs/Munchausen

开源协议:MIT License

下载


Logo

Munchausen

:cloud: Build Status

Data Generation Tool

The main goal is to have a fast, simple and fluent framework for data generation.

  1. public class MunchausenImplementation
  2. {
  3. public static void Main()
  4. {
  5. List<Person> persons = Lie<Person>.Generate(100); // this will generate a collection with 100 objects of type Person.
  6. Person JustOne = Lie<Person>.Generate(); // this will generate only one person.
  7. }
  8. }