Ejemplo n.º 1
0
        public void ParseVerseSegmentsLine()
        {
            versification.ParseVerseSegmentsLine("*GEN 1:5,-,a,b,c,d,e,f");

            // Confirm that the expected segments are added to the specified verse.
            CheckSegments(versification, 1, new VerseRef("GEN 1:5"),
                          new[] { "", "a", "b", "c", "d", "e", "f" });

            Assert.AreEqual(versification.VerseSegments(001001005),
                            new[] { "", "a", "b", "c", "d", "e", "f" });
        }