SILUBS.ScriptureChecks.PunctuationCheckUnitTest.GetReferences_BasicParagraphFinalMultiple C# (CSharp) Method

GetReferences_BasicParagraphFinalMultiple() private method

private GetReferences_BasicParagraphFinalMultiple ( ) : void
return void
		public void GetReferences_BasicParagraphFinalMultiple()
		{
			m_dataSource.SetParameterValue("PunctCheckLevel", "Basic");
			// REVIEW: This appears to be the intended design, but it doesn't seem to be particularly
			// useful since a period followed by a space and a comma followed by a space are both valid,
			// but a period followed by a space, followed by a dollar sign is probably not valid. The
			// user who runs this check in "basic" mode will never be able to catch this kind of error.
			TestGetReferences(new string[] { "._", ",_", "$_" }, new int[] { 4, 5, 6 }, "\\p \\v 1 word.,$");
		}
PunctuationCheckUnitTest