SILUBS.ScriptureChecks.QuotationCheckUnitTest.Level2_MissingClosingMark_UnmatchedOpeningMark C# (CSharp) Method

Level2_MissingClosingMark_UnmatchedOpeningMark() private method

private Level2_MissingClosingMark_UnmatchedOpeningMark ( ) : void
return void
		public void Level2_MissingClosingMark_UnmatchedOpeningMark()
		{
			// In MAT 5-7, each section consists of a separate quotation.
			// If you omit a closing mark at the end of a section,
			// and if the following section contains a level 2 quotation, it seems to be a level 3 quotation.
			// Can the check limit the number of levels?
			SetupPortuguese3();
			Test(new string[,] {
				{ "«", FormatMessage(kUnmatchedOpeningMark, 1), "6:25" }
			}, "\\id MAT \\c 6 \\v 25 \\p «Section with a missing closing mark. \\c 7 \\p \\v 1 «Level one. \\v 4 How can you say: «Level two», level \\v 5 one. \\p \\v 6 No continuation mark.»");
		}
QuotationCheckUnitTest