use of com.xenoage.zong.core.Score in project Zong by Xenoage.
the class Test41b method test.
@Test
public void test() {
Score score = getScore();
StavesList stavesList = score.getStavesList();
List<Part> parts = stavesList.getParts();
assertEquals(expectedNames.length, parts.size());
for (int i : range(parts)) {
assertEquals(expectedNames[i], parts.get(i).getName());
}
}
use of com.xenoage.zong.core.Score in project Zong by Xenoage.
the class Test41c method test.
@Test
public void test() {
Score score = getScore();
StavesList stavesList = score.getStavesList();
StavesListTest.checkPartNames(stavesList, expectedPartNames);
StavesListTest.checkBracketGroups(stavesList, expectedBracketGroups);
StavesListTest.checkBarlineGroups(stavesList, expectedBarlineGroups);
}
use of com.xenoage.zong.core.Score in project Zong by Xenoage.
the class Test41d method test.
@Test
public void test() {
Score score = getScore();
StavesList stavesList = score.getStavesList();
StavesListTest.checkBracketGroups(stavesList, expectedBracketGroups);
StavesListTest.checkBarlineGroups(stavesList, expectedBarlineGroups);
}
use of com.xenoage.zong.core.Score in project Zong by Xenoage.
the class Test41e method test.
@Test
public void test() {
Score score = getScore();
StavesList stavesList = score.getStavesList();
StavesListTest.checkPartNames(stavesList, expectedPartNames);
StavesListTest.checkPartAbbreviations(stavesList, expectedPartAbbreviations);
}
use of com.xenoage.zong.core.Score in project Zong by Xenoage.
the class Test45a method test.
@Test
public void test() {
Score score = getScore();
assertEqualsEndBarlines(expectedEndBarlines, score);
}
Aggregations