You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Common.Tests/Extensions/StringExtensionsTest.cs

23 lines
504 B

using Common.Extensions;
using FluentAssertions;
using NUnit.Framework;
namespace Common.Tests.Extensions;
[TestFixture]
[Parallelizable(ParallelScope.All)]
public class StringExtensionsTest
{
[Test]
public void Carriage_returns_and_newlines_are_stripped_from_front_and_back()
{
"\r\ntest\n\r".TrimNewlines().Should().Be("test");
}
[Test]
public void Spaces_are_ignored_when_stripping_newlines()
{
"\n test \r".TrimNewlines().Should().Be(" test ");
}
}