forked from xoofx/markdig
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef5b958
commit 2f0dd2a
Showing
3 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
using NUnit.Framework; | ||
|
||
namespace Markdig.Tests | ||
{ | ||
[TestFixture] | ||
public class TestExceptionNotThrown | ||
{ | ||
[Test] | ||
public void DoesNotThrowIndexOutOfRangeException1() | ||
{ | ||
Assert.DoesNotThrow(() => | ||
{ | ||
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build(); | ||
Markdown.ToHtml("+-\n|\n+", pipeline); | ||
}); | ||
} | ||
|
||
[Test] | ||
public void DoesNotThrowIndexOutOfRangeException2() | ||
{ | ||
Assert.DoesNotThrow(() => | ||
{ | ||
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build(); | ||
Markdown.ToHtml("+--\n|\n+0", pipeline); | ||
}); | ||
} | ||
|
||
[Test] | ||
public void DoesNotThrowIndexOutOfRangeException3() | ||
{ | ||
Assert.DoesNotThrow(() => | ||
{ | ||
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build(); | ||
Markdown.ToHtml("+-\n|\n+\n0", pipeline); | ||
}); | ||
} | ||
|
||
[Test] | ||
public void DoesNotThrowIndexOutOfRangeException4() | ||
{ | ||
Assert.DoesNotThrow(() => | ||
{ | ||
var pipeline = new MarkdownPipelineBuilder().UseAdvancedExtensions().Build(); | ||
Markdown.ToHtml("+-\n|\n+0", pipeline); | ||
}); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters