/// <exception cref="System.Exception"></exception>
        public virtual void TestShorteningNoteRefName()
        {
            string expectedShortName = "review";
            string noteRefName       = Constants.R_NOTES + expectedShortName;

            NUnit.Framework.Assert.AreEqual(expectedShortName, NoteMap.ShortenRefName(noteRefName
                                                                                      ));
            string nonNoteRefName = Constants.R_HEADS + expectedShortName;

            NUnit.Framework.Assert.AreEqual(nonNoteRefName, NoteMap.ShortenRefName(expectedShortName
                                                                                   ));
        }