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

TestGetReferences() private method

Tests that processing the specified text produces the expected punctuation pattern. Use this version for tests that expect a single pattern.
private TestGetReferences ( string expectedPunctPattern, int expectedOffset, string text ) : void
expectedPunctPattern string The expected punct pattern.
expectedOffset int The expected offset.
text string A string marked up with SF codes representing a text to be /// processed.
return void
		void TestGetReferences(string expectedPunctPattern, int expectedOffset, string text)
		{
			TestGetReferences(new string[] { expectedPunctPattern }, new int[] { expectedOffset }, text);
		}
PunctuationCheckUnitTest