コード例 #1
0
        public void NoteManipulation_RelativeMinor_C()
        {
            NoteSharp starting = NoteSharp.C, expected = NoteSharp.A;

            NoteSharp ending = _service.FindRelativeMinor(starting);

            Assert.AreEqual(expected, ending);
        }