public void ShouldBeAbleToAddAllAlterationsFromAssembly()
        {
            alterations.AddFromAssembly(typeof(DummyAlteration1).Assembly);

            alterations.ShouldContain(a => a is DummyAlteration1);
            alterations.ShouldContain(a => a is DummyAlteration2);
        }