public void GeneratePoco_WorksOk()
        {
            var pocoType = EmitHelpers.CreatePocoType("Jalla",
                                                      "Dummy",
                                                      new KeyValuePair <string, Type>[]
                                                      { new KeyValuePair <string, Type>("Lala", typeof(string)), });
            var pocoInstance = Activator.CreateInstance(pocoType);

            Assert.That(pocoInstance, Is.Not.Null);
        }