14 lines
No EOL
424 B
C#
14 lines
No EOL
424 B
C#
using Xunit;
|
|
|
|
namespace API.Tests.Parser
|
|
{
|
|
public class BookParserTests
|
|
{
|
|
[Theory]
|
|
[InlineData("Gifting The Wonderful World With Blessings! - 3 Side Stories [yuNS][Unknown]", "Gifting The Wonderful World With Blessings!")]
|
|
public void ParseSeriesTest(string filename, string expected)
|
|
{
|
|
Assert.Equal(expected, API.Parser.Parser.ParseSeries(filename));
|
|
}
|
|
}
|
|
} |