void TestMeasure::undoDelInitialVBox_269919() { MasterScore* score = readScore(DIR + "undoDelInitialVBox_269919.mscx"); // 1. delete initial VBox score->startCmd(); MeasureBase* initialVBox = score->measure(0); score->select(initialVBox); score->cmdDeleteSelection(); score->endCmd(); // 2. change duration of first chordrest score->startCmd(); Measure* m = score->firstMeasure(); ChordRest* cr = m->findChordRest(Fraction(0,1), 0); Fraction quarter(4, 1); score->changeCRlen(cr, quarter); score->endCmd(); // 3. Undo to restore first chordrest score->undoRedo(true, 0); // 4. Undo to restore initial VBox resulted in assert failure crash score->undoRedo(true, 0); QVERIFY(saveCompareScore(score, "undoDelInitialVBox_269919.mscx", DIR + "undoDelInitialVBox_269919-ref.mscx")); delete score; }
void TestChordSymbol::testExtend() { MasterScore* score = test_pre("extend"); Measure* m = score->firstMeasure(); Segment* s = m->first(Segment::Type::ChordRest); ChordRest* cr = s->cr(0); score->changeCRlen(cr, TDuration::DurationType::V_WHOLE); score->doLayout(); test_post(score, "extend"); }