Sign in
apache
/
lucenenet
/
analysis-work
/
.
/
src
/
Lucene.Net.TestFramework
/
Util
/
LuceneTestCaseWithReducedFloatPrecision.cs
blob: 863fe5461e641364b753fdd7caa329cef21e99da [
file
] [
log
] [
blame
]
using
Lucene
.
Net
.
Support
;
namespace
Lucene
.
Net
.
Util
{
public
class
LuceneTestCaseWithReducedFloatPrecision
:
LuceneTestCase
{
public
override
void
SetUp
()
{
base
.
SetUp
();
// set precision
FloatUtils
.
SetPrecision
();
}
}
}