After downloading the package I was forced to use the package like this:
var filter = new ProfanityFilter.ProfanityFilter();
Expected syntax didn't compile:
using NUnit.Framework;
using ProfanityFilter;
namespace ProfanityPoc
{
public class ProfanityDetectorTests
{
[Test]
public void Test1()
{
var filter = new ProfanityFilter();
Assert.That();
}
}
}