AlphaTab.Test.Importer.Gp3ImporterTest.TestAccentuation C# (CSharp) Метод

TestAccentuation() приватный Метод

private TestAccentuation ( ) : void
Результат void
        public void TestAccentuation()
        {
            var reader = PrepareImporterWithFile("GuitarPro3/TestAccentuations.gp3");
            var score = reader.ReadScore();

            Assert.IsTrue(score.Tracks[0].Staves[0].Bars[0].Voices[0].Beats[0].Notes[0].IsGhost);
            // it seems accentuation is handled as Forte Fortissimo
            Assert.AreEqual(DynamicValue.FFF, score.Tracks[0].Staves[0].Bars[0].Voices[0].Beats[1].Notes[0].Dynamic);
            Assert.IsTrue(score.Tracks[0].Staves[0].Bars[0].Voices[0].Beats[3].Notes[0].IsLetRing);
            Render(score);
        }