public void ParameterisedConstructor()
 {
     var property = new Bluejam.Utils.DatabaseScripter.Domain.Entities.Property("MyName", "MyProperty");
     Assert.That(property.Name, Is.EqualTo("MyName"));
     Assert.That(property.Value, Is.EqualTo("MyProperty"));
 }
 public void EmptyConstructor()
 {
     var property = new Bluejam.Utils.DatabaseScripter.Domain.Entities.Property();
     Assert.That(property.Name, Is.Null);
     Assert.That(property.Value, Is.Null);
 }