public void WithTestEntity()
 {
     Entity = new TestEntity
                  	{
                  		Description = "This is it",
                  		Name = "THENAME",
                  		Enabled = true
                  	};
 }
 public void WithTestEntity(bool enabled)
 {
     Entity = new TestEntity
              	{
              		Description = "This is it",
              		Name = "THENAME",
              		Enabled = enabled
              	};
 }