-
-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #404 from webmaster442/master
Fixes issue #303
- Loading branch information
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