Documentation

The MnemonicString plugin generates mnemonic words. A mnemonic word is a word with every second letter is a vowel. For example: "Dubinola" The advantage is that these words are mostly easy to pronounce.

In this example we see how to use the MnemonicString plugin. It has three constructor parameters. The first one defines how much words will be generated. The second is the word min length and the last one is the word max length.

public class Person
{
  public string Name { get; set; }
}

public class HelloFiller
{
  public void FillPerson()
  {
    Filler<Person> pFiller = new Filler<Person>();
    pFiller.Setup()
      .OnType<string>().Use(new MnemonicString(1,5,10));

    Person filledPerson = pFiller.Create();
  }
}