You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
}
}
}
The text was updated successfully, but these errors were encountered:
After downloading the package I was forced to use the package like this:
var filter = new ProfanityFilter.ProfanityFilter();
Expected syntax didn't compile:
The text was updated successfully, but these errors were encountered: