fix(core): Fixes wrap not slicing properly (#362)
- [X] Fixes wrap not slicing properly Bumps release version
This commit is contained in:
parent
10a6e17640
commit
9c9591b098
2 changed files with 7 additions and 7 deletions
|
|
@ -43,6 +43,8 @@ namespace Server.Tests
|
|||
|
||||
[Theory]
|
||||
[InlineData("this is a sentence that will probably wrap around a few times because it is long", 10, 6)]
|
||||
[InlineData("An Unnamed House", 10, 6)]
|
||||
[InlineData("Batville", 10, 6)]
|
||||
public void TestWrap(string sentence, int perLine, int maxLines)
|
||||
{
|
||||
var expected = OldWrap(sentence, perLine, maxLines);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue