Code Monkey home page Code Monkey logo

mockdatagenerator's Issues

Create mock URL generator

Generating URL mock data using IDataGenerator<T>

Ex:

public class URLGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Gender generator

Generating Gender mock data using IDataGenerator<T>

Ex:

public class GenderGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Email generator

Generating Email mock data using IDataGenerator<T>

Ex:

public class EmailGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Phone generator

Generating Phone mock data using IDataGenerator<T>

Ex:

public class PhoneGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Name generator

Generating Name mock data using IDataGenerator<T>

Ex:

public class NameGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create AutoIncrement data generator

Ex:

public class AutoIncrementGenerator: RandomizerBase, IDataGenerator<int>
{
       public  AutoIncrementGenerator(int start = 1, int increment = 1)
       {
       }
}

Create mock Language generator

Generating Language mock data using IDataGenerator<T>

Some languages:
Turksih, English, Spanish, German

Ex:

public class LanguageGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Culture generator

Generating Culture mock data using IDataGenerator<T>

Some cultures:
tr-TR, en-US

Ex:

public class CultureGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Money Symbol generator

Generating Money Symbol mock data using IDataGenerator<T>

Some money symbols: ₺ € £ $ ฿ ₨ ﷼ ƒ ¥

Ex:

public class MoneySymbolGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Surname generator

Generating Surname mock data using IDataGenerator<T>

Ex:

public class SurnameGenerator: RandomizerBase, IDataGenerator<string>
{

}

Create mock Money generator

Generating Monay mock data using IDataGenerator<T>

Ex:

public class MonayGenerator: RandomizerBase, IDataGenerator<decimal>
{
     public MonayGenerator(decimal? min = decimal.MinValue, decimal? max = decimal.MaxValue)
     {
     }
}

Create mock CreditCard generator

Generating CreditCard mock data using IDataGenerator<T>

If CardType is not specified, random card numbers can be generated.

Ex:

public enum CardType
{
    Visa,
    Master,
    Amex,
    ...
}

public class CreditCardGenerator: RandomizerBase, IDataGenerator<string>
{
       public CreditCardGenerator(CardType? cardType = null)
       {
       }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.