Made excepton handling optional, off by default

This commit is contained in:
Biarity
2018-02-14 08:52:13 +10:00
parent ce5da2a573
commit e83f647945
3 changed files with 14 additions and 6 deletions

View File

@@ -20,7 +20,10 @@ namespace SieveUnitTests
public SieveOptionsAccessor()
{
_value = new SieveOptions();
_value = new SieveOptions()
{
ThrowExceptions = true
};
}
}
}