Ejemplo n.º 1
0
        public void NoteManipulation_RelativeMajor_C()
        {
            NoteSharp starting = NoteSharp.C, expected = NoteSharp.DSharp;

            NoteSharp ending = _service.FindRelativeMajor(starting);

            Assert.AreEqual(expected, ending);
        }