SILUBS.ScriptureChecks.MatchedPairsCheckUnitTest_Fw.OpenFollowedByFootnoteFollowedByParaWithClosing C# (CSharp) Method

OpenFollowedByFootnoteFollowedByParaWithClosing() private method

private OpenFollowedByFootnoteFollowedByParaWithClosing ( ) : void
return void
		public void OpenFollowedByFootnoteFollowedByParaWithClosing()
		{
			m_dataSource.SetParameterValue("MatchedPairs", MatchedPairsCheckUnitTest_Usfm.kMatchedPairXml1);

			m_dataSource.m_tokens.Add(new DummyTextToken("This is nice (and by nice, I mean",
				TextType.Verse, true, false, "Citation Line1"));
			m_dataSource.m_tokens.Add(new DummyTextToken("Mean <> cruel",
				TextType.Note, true, true, "Note General Paragraph"));
			m_dataSource.m_tokens.Add(new DummyTextToken(" text following footnote.",
				TextType.Verse, false, false, "Citation Line1"));
			m_dataSource.m_tokens.Add(new DummyTextToken("really, super nice). Amen?",
				TextType.Verse, true, false, "Citation Line1"));

			m_check.Check(m_dataSource.TextTokens(), RecordError);

			Assert.AreEqual(0, m_errors.Count);
		}
		#endregion