public void Destroy()
        {
            PropertyChange change = new PropertyChange(".", "StringProperty", string.Empty, 1, 2, EntityState.New);

            change.Destroy();
            Assert.IsNull(change.Before);
            Assert.IsNull(change.After);
            Assert.IsNull(change.EntityPath);
            Assert.IsNull(change.PropertyName);
        }